├── .gitignore ├── GPIO.c ├── GPIO.h ├── LICENSE ├── Makefile ├── README.md ├── control.c ├── control.h ├── discovery.c ├── discovery.h ├── sbpd.c ├── sbpd.h ├── sbpd_commands.cfg ├── servercomm.c └── servercomm.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | sbpd* 4 | -------------------------------------------------------------------------------- /GPIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/GPIO.c -------------------------------------------------------------------------------- /GPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/GPIO.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/README.md -------------------------------------------------------------------------------- /control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/control.c -------------------------------------------------------------------------------- /control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/control.h -------------------------------------------------------------------------------- /discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/discovery.c -------------------------------------------------------------------------------- /discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/discovery.h -------------------------------------------------------------------------------- /sbpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/sbpd.c -------------------------------------------------------------------------------- /sbpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/sbpd.h -------------------------------------------------------------------------------- /sbpd_commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/sbpd_commands.cfg -------------------------------------------------------------------------------- /servercomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/servercomm.c -------------------------------------------------------------------------------- /servercomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolio107/SqueezeButtonPi-Daemon/HEAD/servercomm.h --------------------------------------------------------------------------------