├── .gitignore ├── .travis.yml ├── README.md ├── examples ├── ReceiveDemo_Advanced │ ├── ReceiveDemo_Advanced.ino │ └── output.ino ├── ReceiveDemo_Simple │ └── ReceiveDemo_Simple.ino ├── SendDemo │ └── SendDemo.ino ├── TypeA_WithDIPSwitches │ └── TypeA_WithDIPSwitches.ino ├── TypeA_WithDIPSwitches_Lightweight │ └── TypeA_WithDIPSwitches_Lightweight.ino ├── TypeB_WithRotaryOrSlidingSwitches │ └── TypeB_WithRotaryOrSlidingSwitches.ino ├── TypeC_Intertechno │ └── TypeC_Intertechno.ino ├── TypeD_REV │ └── TypeD_REV.ino └── Webserver │ └── Webserver.ino ├── keywords.txt ├── library.json ├── library.properties ├── platformio.ini └── src ├── RCSwitch.cpp └── RCSwitch.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/README.md -------------------------------------------------------------------------------- /examples/ReceiveDemo_Advanced/ReceiveDemo_Advanced.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/ReceiveDemo_Advanced/ReceiveDemo_Advanced.ino -------------------------------------------------------------------------------- /examples/ReceiveDemo_Advanced/output.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/ReceiveDemo_Advanced/output.ino -------------------------------------------------------------------------------- /examples/ReceiveDemo_Simple/ReceiveDemo_Simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/ReceiveDemo_Simple/ReceiveDemo_Simple.ino -------------------------------------------------------------------------------- /examples/SendDemo/SendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/SendDemo/SendDemo.ino -------------------------------------------------------------------------------- /examples/TypeA_WithDIPSwitches/TypeA_WithDIPSwitches.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/TypeA_WithDIPSwitches/TypeA_WithDIPSwitches.ino -------------------------------------------------------------------------------- /examples/TypeA_WithDIPSwitches_Lightweight/TypeA_WithDIPSwitches_Lightweight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/TypeA_WithDIPSwitches_Lightweight/TypeA_WithDIPSwitches_Lightweight.ino -------------------------------------------------------------------------------- /examples/TypeB_WithRotaryOrSlidingSwitches/TypeB_WithRotaryOrSlidingSwitches.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/TypeB_WithRotaryOrSlidingSwitches/TypeB_WithRotaryOrSlidingSwitches.ino -------------------------------------------------------------------------------- /examples/TypeC_Intertechno/TypeC_Intertechno.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/TypeC_Intertechno/TypeC_Intertechno.ino -------------------------------------------------------------------------------- /examples/TypeD_REV/TypeD_REV.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/TypeD_REV/TypeD_REV.ino -------------------------------------------------------------------------------- /examples/Webserver/Webserver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/examples/Webserver/Webserver.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/RCSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/src/RCSwitch.cpp -------------------------------------------------------------------------------- /src/RCSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1technophile/rc-switch/HEAD/src/RCSwitch.h --------------------------------------------------------------------------------