├── .gitignore ├── LICENSE ├── README.md ├── adel.cpp ├── adel.h └── examples ├── blink2.ino ├── buttonblink.ino ├── delayedblink.ino ├── gentlelight.ino ├── lightshow.ino └── oscillate.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/README.md -------------------------------------------------------------------------------- /adel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/adel.cpp -------------------------------------------------------------------------------- /adel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/adel.h -------------------------------------------------------------------------------- /examples/blink2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/blink2.ino -------------------------------------------------------------------------------- /examples/buttonblink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/buttonblink.ino -------------------------------------------------------------------------------- /examples/delayedblink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/delayedblink.ino -------------------------------------------------------------------------------- /examples/gentlelight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/gentlelight.ino -------------------------------------------------------------------------------- /examples/lightshow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/lightshow.ino -------------------------------------------------------------------------------- /examples/oscillate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samguyer/adel/HEAD/examples/oscillate.ino --------------------------------------------------------------------------------