├── .gitattributes ├── LICENSE ├── README.md ├── SwitchLib.cpp ├── SwitchLib.h ├── examples └── FiveWaySwitch │ └── FiveWaySwitch.ino ├── keywords.txt ├── library.json └── library.properties /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/README.md -------------------------------------------------------------------------------- /SwitchLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/SwitchLib.cpp -------------------------------------------------------------------------------- /SwitchLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/SwitchLib.h -------------------------------------------------------------------------------- /examples/FiveWaySwitch/FiveWaySwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/examples/FiveWaySwitch/FiveWaySwitch.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcallmekoko/SwitchLib/HEAD/library.properties --------------------------------------------------------------------------------