├── LICENSE ├── README.rst ├── TinyPICO Explorer Shield ├── Explorer_Shield_Pinout.jpg ├── README.rst └── TinyPICO_Explorer_Shield_Template │ ├── TinyPICO_Explorer_Shield_Template.ino │ ├── bitmaps.h │ ├── buttons.h │ ├── helpers.h │ └── secret.h ├── TinyPICO-Buzzer └── TinyPICO-Buzzer.ino ├── TinyPICO-Helper ├── README.rst ├── examples │ └── TinyPICO_Funky_LED │ │ └── TinyPICO_Funky_LED.ino ├── keywords.txt ├── library.properties └── src │ ├── TinyPICO.cpp │ └── TinyPICO.h ├── TinyPICO-IOExpander ├── .vscode │ └── .gitignore ├── examples │ ├── Comparator │ │ └── Comparator.ino │ ├── Complete │ │ └── Complete.ino │ ├── Differential │ │ └── Differential.ino │ ├── SimpleIO │ │ └── SimpleIO.ino │ └── SingleEnded │ │ └── SingleEnded.ino ├── keywords.txt ├── library.properties ├── readme.rst └── src │ ├── ADS1015.cpp │ ├── ADS1015.h │ ├── MCP23017.cpp │ ├── MCP23017.h │ ├── TinyPICOExpander.cpp │ └── TinyPICOExpander.h ├── TinyPICO-LOL-RGB-Matrix └── TinyPICO-LOL-RGB-Matrix.ino └── play shield examples ├── LICENSE ├── README.rst └── TinyPICO-Play-Shield-Features ├── TinyPICO-Play-Shield-Features.ino ├── bitmaps.h └── secret.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/README.rst -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/Explorer_Shield_Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/Explorer_Shield_Pinout.jpg -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/README.rst -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/TinyPICO_Explorer_Shield_Template.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/TinyPICO_Explorer_Shield_Template.ino -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/bitmaps.h -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/buttons.h -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/helpers.h -------------------------------------------------------------------------------- /TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/secret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO Explorer Shield/TinyPICO_Explorer_Shield_Template/secret.h -------------------------------------------------------------------------------- /TinyPICO-Buzzer/TinyPICO-Buzzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Buzzer/TinyPICO-Buzzer.ino -------------------------------------------------------------------------------- /TinyPICO-Helper/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/README.rst -------------------------------------------------------------------------------- /TinyPICO-Helper/examples/TinyPICO_Funky_LED/TinyPICO_Funky_LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/examples/TinyPICO_Funky_LED/TinyPICO_Funky_LED.ino -------------------------------------------------------------------------------- /TinyPICO-Helper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/keywords.txt -------------------------------------------------------------------------------- /TinyPICO-Helper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/library.properties -------------------------------------------------------------------------------- /TinyPICO-Helper/src/TinyPICO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/src/TinyPICO.cpp -------------------------------------------------------------------------------- /TinyPICO-Helper/src/TinyPICO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-Helper/src/TinyPICO.h -------------------------------------------------------------------------------- /TinyPICO-IOExpander/.vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/.vscode/.gitignore -------------------------------------------------------------------------------- /TinyPICO-IOExpander/examples/Comparator/Comparator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/examples/Comparator/Comparator.ino -------------------------------------------------------------------------------- /TinyPICO-IOExpander/examples/Complete/Complete.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/examples/Complete/Complete.ino -------------------------------------------------------------------------------- /TinyPICO-IOExpander/examples/Differential/Differential.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/examples/Differential/Differential.ino -------------------------------------------------------------------------------- /TinyPICO-IOExpander/examples/SimpleIO/SimpleIO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/examples/SimpleIO/SimpleIO.ino -------------------------------------------------------------------------------- /TinyPICO-IOExpander/examples/SingleEnded/SingleEnded.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/examples/SingleEnded/SingleEnded.ino -------------------------------------------------------------------------------- /TinyPICO-IOExpander/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/keywords.txt -------------------------------------------------------------------------------- /TinyPICO-IOExpander/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/library.properties -------------------------------------------------------------------------------- /TinyPICO-IOExpander/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/readme.rst -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/ADS1015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/ADS1015.cpp -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/ADS1015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/ADS1015.h -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/MCP23017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/MCP23017.cpp -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/MCP23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/MCP23017.h -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/TinyPICOExpander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/TinyPICOExpander.cpp -------------------------------------------------------------------------------- /TinyPICO-IOExpander/src/TinyPICOExpander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-IOExpander/src/TinyPICOExpander.h -------------------------------------------------------------------------------- /TinyPICO-LOL-RGB-Matrix/TinyPICO-LOL-RGB-Matrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/TinyPICO-LOL-RGB-Matrix/TinyPICO-LOL-RGB-Matrix.ino -------------------------------------------------------------------------------- /play shield examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/play shield examples/LICENSE -------------------------------------------------------------------------------- /play shield examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/play shield examples/README.rst -------------------------------------------------------------------------------- /play shield examples/TinyPICO-Play-Shield-Features/TinyPICO-Play-Shield-Features.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/play shield examples/TinyPICO-Play-Shield-Features/TinyPICO-Play-Shield-Features.ino -------------------------------------------------------------------------------- /play shield examples/TinyPICO-Play-Shield-Features/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/play shield examples/TinyPICO-Play-Shield-Features/bitmaps.h -------------------------------------------------------------------------------- /play shield examples/TinyPICO-Play-Shield-Features/secret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinypico/tinypico-arduino/HEAD/play shield examples/TinyPICO-Play-Shield-Features/secret.h --------------------------------------------------------------------------------