Commit dcf44734 authored by Hermann Mayer's avatar Hermann Mayer
Browse files

[Docs] Added a initial readme file with a project logo asset.

parent 5c802006
Loading
Loading
Loading
Loading

README.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
![avm-trigger-daemon](docs/assets/logo-project.png)
+12 KiB
Loading image diff...
+27.7 KiB

File added.

No diff preview for this file type.

+22 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015 Hermann Mayer
 *
 * AVM - Interface the Smart Home solutions
 *
 * This file is part of avm-motion-trigger.
 *
 * avm-motion-trigger is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * avm-motion-trigger is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with avm-motion-trigger.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "pir-motion.h"
+27 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015 Hermann Mayer
 *
 * AVM - Interface the Smart Home solutions
 *
 * This file is part of avm-motion-trigger.
 *
 * avm-motion-trigger is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * avm-motion-trigger is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with avm-motion-trigger.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef SENSORS_PIR_MOTION_H
#define SENSORS_PIR_MOTION_H

#include <bcm2835.h>

#endif
Loading