├── LICENSE ├── README.md ├── documentation ├── I2C@4.8MHz.jpg ├── SSD1306.pdf ├── SSD1306_RAM.jpg ├── SSD1306_horizontal.jpg ├── SSD1306_vertical.jpg ├── TinyOLEDdemo_pic1.jpg ├── TinyOLEDdemo_pic2.jpg ├── TinyOLEDdemo_pic3.jpg ├── TinyOLEDdemo_pic4.jpg ├── TinyOLEDdemo_pic5.jpg ├── TinyOLEDdemo_pic6.gif ├── TinyOLEDdemo_wiring.png ├── UM10204.pdf ├── i2c-7-bit-address-writing.gif ├── i2c-acknowledge.gif ├── i2c-bit-transfer.gif ├── i2c-command.gif ├── i2c-data-transfer.gif └── i2c-start-stop.gif └── software ├── TinyOLEDdemo_t10_bignumbers ├── main.c ├── main.hex └── makefile ├── TinyOLEDdemo_t10_text ├── main.c ├── main.hex └── makefile ├── TinyOLEDdemo_t13_bignumbers ├── TinyOLEDdemo_t13_bignumbers.ino ├── TinyOLEDdemo_t13_bignumbers_128x64.ino └── makefile ├── TinyOLEDdemo_t13_sinescroller ├── TinyOLEDdemo_t13_sinescroller.ino ├── makefile └── tinyoleddemo_t13_sinescroller.hex ├── TinyOLEDdemo_t13_sinewave ├── TinyOLEDdemo_t13_sinewave.ino ├── TinyOLEDdemo_t13_sinewave_128x64.ino ├── makefile └── tinyoleddemo_t13_sinewave.hex ├── TinyOLEDdemo_t13_text ├── TinyOLEDdemo_t13_text.ino └── makefile ├── TinyOLEDdemo_t202_bignumbers └── TinyOLEDdemo_t202_bignumbers.ino └── TinyOLEDdemo_t202_text └── TinyOLEDdemo_t202_text.ino /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/README.md -------------------------------------------------------------------------------- /documentation/I2C@4.8MHz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/I2C@4.8MHz.jpg -------------------------------------------------------------------------------- /documentation/SSD1306.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/SSD1306.pdf -------------------------------------------------------------------------------- /documentation/SSD1306_RAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/SSD1306_RAM.jpg -------------------------------------------------------------------------------- /documentation/SSD1306_horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/SSD1306_horizontal.jpg -------------------------------------------------------------------------------- /documentation/SSD1306_vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/SSD1306_vertical.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic1.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic2.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic3.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic4.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic5.jpg -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_pic6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_pic6.gif -------------------------------------------------------------------------------- /documentation/TinyOLEDdemo_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/TinyOLEDdemo_wiring.png -------------------------------------------------------------------------------- /documentation/UM10204.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/UM10204.pdf -------------------------------------------------------------------------------- /documentation/i2c-7-bit-address-writing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-7-bit-address-writing.gif -------------------------------------------------------------------------------- /documentation/i2c-acknowledge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-acknowledge.gif -------------------------------------------------------------------------------- /documentation/i2c-bit-transfer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-bit-transfer.gif -------------------------------------------------------------------------------- /documentation/i2c-command.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-command.gif -------------------------------------------------------------------------------- /documentation/i2c-data-transfer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-data-transfer.gif -------------------------------------------------------------------------------- /documentation/i2c-start-stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/documentation/i2c-start-stop.gif -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_bignumbers/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_bignumbers/main.c -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_bignumbers/main.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_bignumbers/main.hex -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_bignumbers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_bignumbers/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_text/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_text/main.c -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_text/main.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_text/main.hex -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t10_text/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t10_text/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_bignumbers/TinyOLEDdemo_t13_bignumbers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_bignumbers/TinyOLEDdemo_t13_bignumbers.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_bignumbers/TinyOLEDdemo_t13_bignumbers_128x64.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_bignumbers/TinyOLEDdemo_t13_bignumbers_128x64.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_bignumbers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_bignumbers/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinescroller/TinyOLEDdemo_t13_sinescroller.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinescroller/TinyOLEDdemo_t13_sinescroller.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinescroller/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinescroller/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinescroller/tinyoleddemo_t13_sinescroller.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinescroller/tinyoleddemo_t13_sinescroller.hex -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinewave/TinyOLEDdemo_t13_sinewave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinewave/TinyOLEDdemo_t13_sinewave.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinewave/TinyOLEDdemo_t13_sinewave_128x64.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinewave/TinyOLEDdemo_t13_sinewave_128x64.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinewave/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinewave/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_sinewave/tinyoleddemo_t13_sinewave.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_sinewave/tinyoleddemo_t13_sinewave.hex -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_text/TinyOLEDdemo_t13_text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_text/TinyOLEDdemo_t13_text.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t13_text/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t13_text/makefile -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t202_bignumbers/TinyOLEDdemo_t202_bignumbers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t202_bignumbers/TinyOLEDdemo_t202_bignumbers.ino -------------------------------------------------------------------------------- /software/TinyOLEDdemo_t202_text/TinyOLEDdemo_t202_text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyOLEDdemo/HEAD/software/TinyOLEDdemo_t202_text/TinyOLEDdemo_t202_text.ino --------------------------------------------------------------------------------