├── .gitignore ├── ATtiny85 ├── Makefile └── shoot.c ├── LICENSE ├── README.md ├── arduino-pro-mini └── shoot.c ├── arduino-uno └── shoot.c └── protocol.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ATtiny85/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/ATtiny85/Makefile -------------------------------------------------------------------------------- /ATtiny85/shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/ATtiny85/shoot.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/README.md -------------------------------------------------------------------------------- /arduino-pro-mini/shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/arduino-pro-mini/shoot.c -------------------------------------------------------------------------------- /arduino-uno/shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/arduino-uno/shoot.c -------------------------------------------------------------------------------- /protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbanij/IR-remote-Canon/HEAD/protocol.png --------------------------------------------------------------------------------