├── .gitignore ├── README.md ├── img └── livolo-serial.png ├── livolo1.X ├── Makefile ├── capsensor.c ├── capsensor.h ├── confbits.c ├── config.h ├── extrigger.c ├── extrigger.h ├── heartbeat.c ├── heartbeat.h ├── main.c ├── nbproject │ ├── configurations.xml │ └── project.xml ├── switch.c ├── switch.h ├── uart.c ├── uart.h ├── uart_bitbang.asm └── util.h └── schematics ├── README.md ├── com-line-guess.txt └── led-currents.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/README.md -------------------------------------------------------------------------------- /img/livolo-serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/img/livolo-serial.png -------------------------------------------------------------------------------- /livolo1.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/Makefile -------------------------------------------------------------------------------- /livolo1.X/capsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/capsensor.c -------------------------------------------------------------------------------- /livolo1.X/capsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/capsensor.h -------------------------------------------------------------------------------- /livolo1.X/confbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/confbits.c -------------------------------------------------------------------------------- /livolo1.X/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/config.h -------------------------------------------------------------------------------- /livolo1.X/extrigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/extrigger.c -------------------------------------------------------------------------------- /livolo1.X/extrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/extrigger.h -------------------------------------------------------------------------------- /livolo1.X/heartbeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/heartbeat.c -------------------------------------------------------------------------------- /livolo1.X/heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/heartbeat.h -------------------------------------------------------------------------------- /livolo1.X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/main.c -------------------------------------------------------------------------------- /livolo1.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /livolo1.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/nbproject/project.xml -------------------------------------------------------------------------------- /livolo1.X/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/switch.c -------------------------------------------------------------------------------- /livolo1.X/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/switch.h -------------------------------------------------------------------------------- /livolo1.X/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/uart.c -------------------------------------------------------------------------------- /livolo1.X/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/uart.h -------------------------------------------------------------------------------- /livolo1.X/uart_bitbang.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/uart_bitbang.asm -------------------------------------------------------------------------------- /livolo1.X/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/livolo1.X/util.h -------------------------------------------------------------------------------- /schematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/schematics/README.md -------------------------------------------------------------------------------- /schematics/com-line-guess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/schematics/com-line-guess.txt -------------------------------------------------------------------------------- /schematics/led-currents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamarju/livolo-firmware/HEAD/schematics/led-currents.txt --------------------------------------------------------------------------------