├── .gitignore ├── README.md ├── doc ├── .gitignore ├── Doxyfile ├── alarm-clock.dox ├── blink-blink.dox ├── blink-charlieplex.dox ├── blink-cylon.dox ├── blink-startrek.dox ├── dmd-demo.dox ├── dmd-running-figure.dox ├── ir-dumpir.dox ├── ir-snake.dox ├── lcd-form.dox ├── lcd-helloworld.dox ├── mainpage.dox ├── shell-serial.dox └── shell-telnet.dox ├── gen ├── genflip.c ├── genkeymap.cpp ├── genlookup.c └── genwcwidth.c └── libraries ├── BlinkLED ├── BlinkLED.cpp ├── BlinkLED.h ├── Charlieplex.cpp ├── Charlieplex.h ├── ChaseLEDs.cpp ├── ChaseLEDs.h ├── examples │ ├── Blink │ │ └── Blink.ino │ ├── Charlieplex │ │ ├── Charlieplex.ino │ │ ├── charlieplex2pin.fig │ │ ├── charlieplex2pin.png │ │ ├── charlieplex3pin.fig │ │ ├── charlieplex3pin.png │ │ ├── charlieplex4pin.fig │ │ ├── charlieplex4pin.png │ │ ├── charlieplex5pin.fig │ │ ├── charlieplex5pin.png │ │ ├── charlieplexeg.fig │ │ └── charlieplexeg.png │ ├── CharlieplexChase │ │ └── CharlieplexChase.ino │ ├── Cylon │ │ ├── Cylon.fig │ │ ├── Cylon.ino │ │ └── Cylon.png │ ├── Cylon2 │ │ └── Cylon2.ino │ ├── Cylon3 │ │ └── Cylon3.ino │ ├── Cylon4 │ │ ├── Cylon4.fig │ │ ├── Cylon4.fig.bak │ │ ├── Cylon4.ino │ │ └── Cylon4.png │ ├── StarTrek │ │ ├── StarTrek.fig │ │ ├── StarTrek.ino │ │ ├── StarTrek.png │ │ ├── StarTrekBreadboard.png │ │ ├── StarTrekShield.png │ │ ├── ThreeChase.fig │ │ └── ThreeChase.png │ └── StarTrek2 │ │ └── StarTrek2.ino └── keywords.txt ├── DMD ├── Bitmap.cpp ├── Bitmap.h ├── DMD.cpp ├── DMD.h ├── DejaVuSans9.h ├── DejaVuSansBold9.h ├── DejaVuSansItalic9.h ├── Mono5x7.h ├── dmd-4x1.fig ├── dmd-4x1.png ├── dmd-4x2.fig ├── dmd-4x2.png ├── dmd-4x3.fig ├── dmd-4x3.png ├── dmd-info.txt ├── examples │ ├── Demo │ │ └── Demo.ino │ ├── RunningFigure │ │ └── RunningFigure.ino │ └── RunningFigureISR │ │ └── RunningFigureISR.ino └── keywords.txt ├── I2C ├── EEPROM24.cpp ├── EEPROM24.h ├── I2CMaster.cpp ├── I2CMaster.h ├── SoftI2C.cpp ├── SoftI2C.h ├── eeprom_circuit.fig ├── eeprom_circuit.png └── keywords.txt ├── IR ├── IRreceiver.cpp ├── IRreceiver.h ├── RC5.h ├── examples │ ├── DumpIR │ │ └── DumpIR.ino │ └── Snake │ │ └── Snake.ino ├── irchip.jpg └── keywords.txt ├── LCD ├── BoolField.cpp ├── BoolField.h ├── Field.cpp ├── Field.h ├── Form.cpp ├── Form.h ├── IntField.cpp ├── IntField.h ├── LCD.cpp ├── LCD.h ├── ListField.cpp ├── ListField.h ├── TextField.cpp ├── TextField.h ├── TimeField.cpp ├── TimeField.h ├── examples │ ├── Form │ │ ├── Form.ino │ │ ├── FormBool.png │ │ ├── FormInt.png │ │ ├── FormText.png │ │ ├── FormTimeRO.png │ │ └── FormTimeRW.png │ └── HelloWorld │ │ ├── HelloWorld.ino │ │ └── HelloWorld.png ├── keywords.txt └── utility │ ├── LiquidCrystal.cpp │ └── LiquidCrystal.h ├── LICENSE.txt ├── Melody ├── Melody.cpp ├── Melody.h ├── examples │ └── PlayTone │ │ └── PlayTone.ino └── keywords.txt ├── PowerSave ├── PowerSave.cpp ├── PowerSave.h └── keywords.txt ├── RTC ├── DS1307RTC.cpp ├── DS1307RTC.h ├── DS3231RTC.cpp ├── DS3231RTC.h ├── DS3232RTC.cpp ├── DS3232RTC.h ├── RTC.cpp ├── RTC.h ├── examples │ ├── AlarmClock │ │ ├── AlarmClock.ino │ │ ├── Clock.h │ │ ├── FrontScreen.cpp │ │ ├── FrontScreen.h │ │ ├── LowPowerMelody.cpp │ │ ├── LowPowerMelody.h │ │ ├── SetAlarm.cpp │ │ ├── SetAlarm.h │ │ ├── SetDate.cpp │ │ ├── SetDate.h │ │ ├── SetMelody.cpp │ │ ├── SetMelody.h │ │ ├── SetTime.cpp │ │ ├── SetTime.h │ │ ├── alarm_circuit.fig │ │ ├── alarm_circuit.pdf │ │ ├── alarm_circuit.png │ │ ├── alarm_clock.jpg │ │ ├── clock_shield.jpg │ │ ├── kitten_minimal.jpg │ │ ├── radio_controller.fig │ │ └── radio_controller.png │ ├── DumpRTC │ │ └── DumpRTC.ino │ └── TestRTC │ │ └── TestRTC.ino └── keywords.txt └── Shell ├── LoginShell.cpp ├── LoginShell.h ├── Shell.cpp ├── Shell.h ├── TelnetDefs.h ├── Terminal.cpp ├── Terminal.h ├── USBKeysExtra.h ├── examples ├── Keys │ └── Keys.ino ├── SerialShell │ └── SerialShell.ino └── TelnetServer │ └── TelnetServer.ino └── keywords.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/alarm-clock.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/alarm-clock.dox -------------------------------------------------------------------------------- /doc/blink-blink.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/blink-blink.dox -------------------------------------------------------------------------------- /doc/blink-charlieplex.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/blink-charlieplex.dox -------------------------------------------------------------------------------- /doc/blink-cylon.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/blink-cylon.dox -------------------------------------------------------------------------------- /doc/blink-startrek.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/blink-startrek.dox -------------------------------------------------------------------------------- /doc/dmd-demo.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/dmd-demo.dox -------------------------------------------------------------------------------- /doc/dmd-running-figure.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/dmd-running-figure.dox -------------------------------------------------------------------------------- /doc/ir-dumpir.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/ir-dumpir.dox -------------------------------------------------------------------------------- /doc/ir-snake.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/ir-snake.dox -------------------------------------------------------------------------------- /doc/lcd-form.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/lcd-form.dox -------------------------------------------------------------------------------- /doc/lcd-helloworld.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/lcd-helloworld.dox -------------------------------------------------------------------------------- /doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/mainpage.dox -------------------------------------------------------------------------------- /doc/shell-serial.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/shell-serial.dox -------------------------------------------------------------------------------- /doc/shell-telnet.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/doc/shell-telnet.dox -------------------------------------------------------------------------------- /gen/genflip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/gen/genflip.c -------------------------------------------------------------------------------- /gen/genkeymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/gen/genkeymap.cpp -------------------------------------------------------------------------------- /gen/genlookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/gen/genlookup.c -------------------------------------------------------------------------------- /gen/genwcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/gen/genwcwidth.c -------------------------------------------------------------------------------- /libraries/BlinkLED/BlinkLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/BlinkLED.cpp -------------------------------------------------------------------------------- /libraries/BlinkLED/BlinkLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/BlinkLED.h -------------------------------------------------------------------------------- /libraries/BlinkLED/Charlieplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/Charlieplex.cpp -------------------------------------------------------------------------------- /libraries/BlinkLED/Charlieplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/Charlieplex.h -------------------------------------------------------------------------------- /libraries/BlinkLED/ChaseLEDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/ChaseLEDs.cpp -------------------------------------------------------------------------------- /libraries/BlinkLED/ChaseLEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/ChaseLEDs.h -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/Charlieplex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/Charlieplex.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex2pin.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex2pin.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex2pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex2pin.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex3pin.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex3pin.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex3pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex3pin.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex4pin.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex4pin.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex4pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex4pin.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex5pin.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex5pin.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplex5pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplex5pin.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplexeg.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplexeg.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Charlieplex/charlieplexeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Charlieplex/charlieplexeg.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/CharlieplexChase/CharlieplexChase.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/CharlieplexChase/CharlieplexChase.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon/Cylon.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon/Cylon.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon/Cylon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon/Cylon.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon2/Cylon2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon2/Cylon2.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon3/Cylon3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon3/Cylon3.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon4/Cylon4.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon4/Cylon4.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon4/Cylon4.fig.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon4/Cylon4.fig.bak -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon4/Cylon4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon4/Cylon4.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/Cylon4/Cylon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/Cylon4/Cylon4.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/StarTrek.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/StarTrek.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/StarTrek.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/StarTrek.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/StarTrek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/StarTrek.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/StarTrekBreadboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/StarTrekBreadboard.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/StarTrekShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/StarTrekShield.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/ThreeChase.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/ThreeChase.fig -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek/ThreeChase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek/ThreeChase.png -------------------------------------------------------------------------------- /libraries/BlinkLED/examples/StarTrek2/StarTrek2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/examples/StarTrek2/StarTrek2.ino -------------------------------------------------------------------------------- /libraries/BlinkLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/BlinkLED/keywords.txt -------------------------------------------------------------------------------- /libraries/DMD/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/Bitmap.cpp -------------------------------------------------------------------------------- /libraries/DMD/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/Bitmap.h -------------------------------------------------------------------------------- /libraries/DMD/DMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/DMD.cpp -------------------------------------------------------------------------------- /libraries/DMD/DMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/DMD.h -------------------------------------------------------------------------------- /libraries/DMD/DejaVuSans9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/DejaVuSans9.h -------------------------------------------------------------------------------- /libraries/DMD/DejaVuSansBold9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/DejaVuSansBold9.h -------------------------------------------------------------------------------- /libraries/DMD/DejaVuSansItalic9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/DejaVuSansItalic9.h -------------------------------------------------------------------------------- /libraries/DMD/Mono5x7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/Mono5x7.h -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x1.fig -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x1.png -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x2.fig -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x2.png -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x3.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x3.fig -------------------------------------------------------------------------------- /libraries/DMD/dmd-4x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-4x3.png -------------------------------------------------------------------------------- /libraries/DMD/dmd-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/dmd-info.txt -------------------------------------------------------------------------------- /libraries/DMD/examples/Demo/Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/examples/Demo/Demo.ino -------------------------------------------------------------------------------- /libraries/DMD/examples/RunningFigure/RunningFigure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/examples/RunningFigure/RunningFigure.ino -------------------------------------------------------------------------------- /libraries/DMD/examples/RunningFigureISR/RunningFigureISR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/examples/RunningFigureISR/RunningFigureISR.ino -------------------------------------------------------------------------------- /libraries/DMD/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/DMD/keywords.txt -------------------------------------------------------------------------------- /libraries/I2C/EEPROM24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/EEPROM24.cpp -------------------------------------------------------------------------------- /libraries/I2C/EEPROM24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/EEPROM24.h -------------------------------------------------------------------------------- /libraries/I2C/I2CMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/I2CMaster.cpp -------------------------------------------------------------------------------- /libraries/I2C/I2CMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/I2CMaster.h -------------------------------------------------------------------------------- /libraries/I2C/SoftI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/SoftI2C.cpp -------------------------------------------------------------------------------- /libraries/I2C/SoftI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/SoftI2C.h -------------------------------------------------------------------------------- /libraries/I2C/eeprom_circuit.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/eeprom_circuit.fig -------------------------------------------------------------------------------- /libraries/I2C/eeprom_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/eeprom_circuit.png -------------------------------------------------------------------------------- /libraries/I2C/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/I2C/keywords.txt -------------------------------------------------------------------------------- /libraries/IR/IRreceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/IRreceiver.cpp -------------------------------------------------------------------------------- /libraries/IR/IRreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/IRreceiver.h -------------------------------------------------------------------------------- /libraries/IR/RC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/RC5.h -------------------------------------------------------------------------------- /libraries/IR/examples/DumpIR/DumpIR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/examples/DumpIR/DumpIR.ino -------------------------------------------------------------------------------- /libraries/IR/examples/Snake/Snake.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/examples/Snake/Snake.ino -------------------------------------------------------------------------------- /libraries/IR/irchip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/irchip.jpg -------------------------------------------------------------------------------- /libraries/IR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/IR/keywords.txt -------------------------------------------------------------------------------- /libraries/LCD/BoolField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/BoolField.cpp -------------------------------------------------------------------------------- /libraries/LCD/BoolField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/BoolField.h -------------------------------------------------------------------------------- /libraries/LCD/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/Field.cpp -------------------------------------------------------------------------------- /libraries/LCD/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/Field.h -------------------------------------------------------------------------------- /libraries/LCD/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/Form.cpp -------------------------------------------------------------------------------- /libraries/LCD/Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/Form.h -------------------------------------------------------------------------------- /libraries/LCD/IntField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/IntField.cpp -------------------------------------------------------------------------------- /libraries/LCD/IntField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/IntField.h -------------------------------------------------------------------------------- /libraries/LCD/LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/LCD.cpp -------------------------------------------------------------------------------- /libraries/LCD/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/LCD.h -------------------------------------------------------------------------------- /libraries/LCD/ListField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/ListField.cpp -------------------------------------------------------------------------------- /libraries/LCD/ListField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/ListField.h -------------------------------------------------------------------------------- /libraries/LCD/TextField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/TextField.cpp -------------------------------------------------------------------------------- /libraries/LCD/TextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/TextField.h -------------------------------------------------------------------------------- /libraries/LCD/TimeField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/TimeField.cpp -------------------------------------------------------------------------------- /libraries/LCD/TimeField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/TimeField.h -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/Form.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/Form.ino -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/FormBool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/FormBool.png -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/FormInt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/FormInt.png -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/FormText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/FormText.png -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/FormTimeRO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/FormTimeRO.png -------------------------------------------------------------------------------- /libraries/LCD/examples/Form/FormTimeRW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/Form/FormTimeRW.png -------------------------------------------------------------------------------- /libraries/LCD/examples/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /libraries/LCD/examples/HelloWorld/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/examples/HelloWorld/HelloWorld.png -------------------------------------------------------------------------------- /libraries/LCD/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/keywords.txt -------------------------------------------------------------------------------- /libraries/LCD/utility/LiquidCrystal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/utility/LiquidCrystal.cpp -------------------------------------------------------------------------------- /libraries/LCD/utility/LiquidCrystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LCD/utility/LiquidCrystal.h -------------------------------------------------------------------------------- /libraries/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Melody/Melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Melody/Melody.cpp -------------------------------------------------------------------------------- /libraries/Melody/Melody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Melody/Melody.h -------------------------------------------------------------------------------- /libraries/Melody/examples/PlayTone/PlayTone.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Melody/examples/PlayTone/PlayTone.ino -------------------------------------------------------------------------------- /libraries/Melody/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Melody/keywords.txt -------------------------------------------------------------------------------- /libraries/PowerSave/PowerSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/PowerSave/PowerSave.cpp -------------------------------------------------------------------------------- /libraries/PowerSave/PowerSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/PowerSave/PowerSave.h -------------------------------------------------------------------------------- /libraries/PowerSave/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/PowerSave/keywords.txt -------------------------------------------------------------------------------- /libraries/RTC/DS1307RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS1307RTC.cpp -------------------------------------------------------------------------------- /libraries/RTC/DS1307RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS1307RTC.h -------------------------------------------------------------------------------- /libraries/RTC/DS3231RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS3231RTC.cpp -------------------------------------------------------------------------------- /libraries/RTC/DS3231RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS3231RTC.h -------------------------------------------------------------------------------- /libraries/RTC/DS3232RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS3232RTC.cpp -------------------------------------------------------------------------------- /libraries/RTC/DS3232RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/DS3232RTC.h -------------------------------------------------------------------------------- /libraries/RTC/RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/RTC.cpp -------------------------------------------------------------------------------- /libraries/RTC/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/RTC.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/AlarmClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/AlarmClock.ino -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/Clock.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/FrontScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/FrontScreen.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/FrontScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/FrontScreen.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/LowPowerMelody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/LowPowerMelody.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/LowPowerMelody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/LowPowerMelody.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetAlarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetAlarm.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetAlarm.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetDate.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetDate.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetMelody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetMelody.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetMelody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetMelody.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetTime.cpp -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/SetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/SetTime.h -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/alarm_circuit.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/alarm_circuit.fig -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/alarm_circuit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/alarm_circuit.pdf -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/alarm_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/alarm_circuit.png -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/alarm_clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/alarm_clock.jpg -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/clock_shield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/clock_shield.jpg -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/kitten_minimal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/kitten_minimal.jpg -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/radio_controller.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/radio_controller.fig -------------------------------------------------------------------------------- /libraries/RTC/examples/AlarmClock/radio_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/AlarmClock/radio_controller.png -------------------------------------------------------------------------------- /libraries/RTC/examples/DumpRTC/DumpRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/DumpRTC/DumpRTC.ino -------------------------------------------------------------------------------- /libraries/RTC/examples/TestRTC/TestRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/examples/TestRTC/TestRTC.ino -------------------------------------------------------------------------------- /libraries/RTC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/RTC/keywords.txt -------------------------------------------------------------------------------- /libraries/Shell/LoginShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/LoginShell.cpp -------------------------------------------------------------------------------- /libraries/Shell/LoginShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/LoginShell.h -------------------------------------------------------------------------------- /libraries/Shell/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/Shell.cpp -------------------------------------------------------------------------------- /libraries/Shell/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/Shell.h -------------------------------------------------------------------------------- /libraries/Shell/TelnetDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/TelnetDefs.h -------------------------------------------------------------------------------- /libraries/Shell/Terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/Terminal.cpp -------------------------------------------------------------------------------- /libraries/Shell/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/Terminal.h -------------------------------------------------------------------------------- /libraries/Shell/USBKeysExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/USBKeysExtra.h -------------------------------------------------------------------------------- /libraries/Shell/examples/Keys/Keys.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/examples/Keys/Keys.ino -------------------------------------------------------------------------------- /libraries/Shell/examples/SerialShell/SerialShell.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/examples/SerialShell/SerialShell.ino -------------------------------------------------------------------------------- /libraries/Shell/examples/TelnetServer/TelnetServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/examples/TelnetServer/TelnetServer.ino -------------------------------------------------------------------------------- /libraries/Shell/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rweather/arduino-projects/HEAD/libraries/Shell/keywords.txt --------------------------------------------------------------------------------