├── Code ├── Driver │ └── SSD_13XX │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SSD_13XX.cpp │ │ ├── SSD_13XX.h │ │ ├── _display │ │ ├── SSD_1331_96x64.h │ │ ├── SSD_1331_REDPCB.h │ │ ├── SSD_1332_96x64.h │ │ ├── SSD_1351_128x128.h │ │ └── SSD_1351_128x96.h │ │ ├── _fonts │ │ ├── Terminal_9.c │ │ ├── akasha_cap.c │ │ ├── akashi20.c │ │ ├── arial10.c │ │ ├── arial20.c │ │ ├── defaultFont.c │ │ ├── mono_mid.c │ │ ├── msShell14.c │ │ ├── nullfont.c │ │ ├── orbitron14.c │ │ ├── square_small.c │ │ ├── titlingCaps.c │ │ └── unborn_small.c │ │ ├── _icons │ │ ├── mixer1.c │ │ ├── spkOff.c │ │ ├── spkOn.c │ │ ├── wifi.c │ │ └── world.c │ │ ├── _images │ │ ├── .DS_Store │ │ ├── eye │ │ │ ├── eye0.c │ │ │ ├── eye1.c │ │ │ ├── eye10.c │ │ │ ├── eye11.c │ │ │ ├── eye12.c │ │ │ ├── eye13.c │ │ │ ├── eye14.c │ │ │ ├── eye15.c │ │ │ ├── eye16.c │ │ │ ├── eye17.c │ │ │ ├── eye2.c │ │ │ ├── eye3.c │ │ │ ├── eye4.c │ │ │ ├── eye5.c │ │ │ ├── eye6.c │ │ │ ├── eye7.c │ │ │ ├── eye8.c │ │ │ ├── eye9.c │ │ │ └── eye93.c │ │ ├── fuji2.c │ │ ├── fuji22.c │ │ ├── hands.c │ │ ├── machine.c │ │ ├── montreal2.c │ │ ├── montreal22.c │ │ ├── nature copy.c │ │ ├── nature.c │ │ ├── rad1.c │ │ ├── redb.c │ │ ├── skull.c │ │ ├── sw1 copy.c │ │ ├── sw1.c │ │ ├── wifi2.c │ │ ├── wifi2s.c │ │ └── wifi2sr.c │ │ ├── _includes │ │ ├── SSD_1331_registers.h │ │ ├── SSD_1332_registers.h │ │ ├── SSD_1351_registers.h │ │ ├── _common_16bit_colors.h │ │ ├── _cpuCommons.h │ │ ├── sumotoy_fontDescription.h │ │ ├── sumotoy_iconDescription.h │ │ └── sumotoy_imageDescription.h │ │ ├── _settings │ │ └── SSD_13XX_settings.h │ │ ├── _utility │ │ └── for_LCD_Font_Converter │ │ │ ├── ConverterPreset │ │ │ ├── sumotoy_font.xml │ │ │ ├── sumotoy_icon.xml │ │ │ └── sumotoy_image.xml │ │ │ ├── FontFiles │ │ │ ├── Terminal_9.xml │ │ │ ├── akasha_cap.xml │ │ │ ├── akashi20.xml │ │ │ ├── arial10.xml │ │ │ ├── arial20.xml │ │ │ ├── arial_x2.rar │ │ │ ├── defaultFont.xml │ │ │ ├── mono_mid.xml │ │ │ ├── msShell14.xml │ │ │ ├── orbitron14.xml │ │ │ ├── square_small.xml │ │ │ ├── titlingCaps.xml │ │ │ └── unborn_small.xml │ │ │ ├── font_range.txt │ │ │ ├── sumotoy_font_2.4.tmpl │ │ │ ├── sumotoy_icon_1.3.tmpl │ │ │ └── sumotoy_picture_1.3.tmpl │ │ ├── examples │ │ ├── Benchmark │ │ │ └── Benchmark.ino │ │ ├── Benchmarks_Alternative │ │ │ ├── Benchmarks_Alternative.ino │ │ │ └── tests.ino │ │ ├── Clock_example │ │ │ └── Clock_example.ino │ │ ├── ColorMood_example │ │ │ └── ColorMood_example.ino │ │ ├── Solid3D_example │ │ │ └── Solid3D_example.ino │ │ ├── _ESP8266 │ │ │ ├── Benchmark │ │ │ │ └── Benchmark.ino │ │ │ ├── WiFi_scan │ │ │ │ └── WiFi_scan.ino │ │ │ ├── basicSetup │ │ │ │ └── basicSetup.ino │ │ │ ├── drawLineAngle_example │ │ │ │ └── drawLineAngle_example.ino │ │ │ └── externalFonts │ │ │ │ └── externalFonts.ino │ │ ├── avr_benchmark │ │ │ └── avr_benchmark.ino │ │ ├── basicSetup │ │ │ └── basicSetup.ino │ │ ├── benchmark_version2.rar │ │ ├── bigtest │ │ │ └── bigtest.ino │ │ ├── bubbles │ │ │ └── bubbles.ino │ │ ├── char_remap_example │ │ │ └── char_remap_example.ino │ │ ├── drawLineAngle_example │ │ │ └── drawLineAngle_example.ino │ │ ├── externalFonts │ │ │ └── externalFonts.ino │ │ ├── graphictest │ │ │ └── graphictest.ino │ │ ├── icon_inverse │ │ │ └── icon_inverse.ino │ │ ├── icon_simple │ │ │ └── icon_simple.ino │ │ ├── icon_simple2 │ │ │ └── icon_simple2.ino │ │ ├── image_background │ │ │ ├── Debug │ │ │ │ ├── board.buildinfo │ │ │ │ ├── image_background.ino.elf │ │ │ │ └── image_background.ino.hex │ │ │ ├── __vm │ │ │ │ ├── .image_background.vsarduino.h │ │ │ │ ├── Compile.vmps.xml │ │ │ │ ├── Configuration.Debug.vmps.xml │ │ │ │ └── Upload.vmps.xml │ │ │ ├── image_background.ino │ │ │ ├── image_background.vcxproj │ │ │ └── image_background.vcxproj.filters │ │ ├── image_eyeAnimation │ │ │ └── image_eyeAnimation.ino │ │ ├── image_simple │ │ │ └── image_simple.ino │ │ ├── ringMeterExample │ │ │ └── ringMeterExample.ino │ │ ├── roundGaugeWithBallistic │ │ │ └── roundGaugeWithBallistic.ino │ │ └── textCentering │ │ │ └── textCentering.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ └── library.properties ├── LoggerBoard │ ├── Buttons.cpp │ ├── Buttons.h │ ├── Color.h │ ├── Logger.cpp │ ├── Logger.h │ ├── LoggerBoard.ino │ ├── Menu.cpp │ ├── Menu.h │ ├── Menu_Browse.cpp │ ├── Menu_Clock.cpp │ ├── Menu_Readings.cpp │ ├── Menu_Record.cpp │ └── README.md └── Test_Screen │ └── Test_Screen.ino ├── Images ├── Back.JPG └── Front.JPG ├── PCB ├── Color_SAMD21_Rev3.1.xlsx ├── Color_SAMD21_Rev3.1_Schematic.pdf ├── Gerbers for Rev3.1.zip └── SAMD21G_Color_Oled_Rev3.1_Parts_Map.PDF └── README.md /Code/Driver/SSD_13XX/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/.DS_Store -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/LICENSE -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/README.md -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/SSD_13XX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/SSD_13XX.cpp -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/SSD_13XX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/SSD_13XX.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_display/SSD_1331_96x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_display/SSD_1331_96x64.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_display/SSD_1331_REDPCB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_display/SSD_1331_REDPCB.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_display/SSD_1332_96x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_display/SSD_1332_96x64.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_display/SSD_1351_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_display/SSD_1351_128x128.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_display/SSD_1351_128x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_display/SSD_1351_128x96.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/Terminal_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/Terminal_9.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/akasha_cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/akasha_cap.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/akashi20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/akashi20.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/arial10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/arial10.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/arial20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/arial20.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/defaultFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/defaultFont.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/mono_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/mono_mid.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/msShell14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/msShell14.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/nullfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/nullfont.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/orbitron14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/orbitron14.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/square_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/square_small.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/titlingCaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/titlingCaps.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_fonts/unborn_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_fonts/unborn_small.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_icons/mixer1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_icons/mixer1.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_icons/spkOff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_icons/spkOff.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_icons/spkOn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_icons/spkOn.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_icons/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_icons/wifi.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_icons/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_icons/world.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/.DS_Store -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye0.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye1.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye10.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye11.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye12.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye13.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye14.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye15.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye16.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye17.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye2.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye3.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye4.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye5.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye6.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye7.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye8.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye9.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/eye/eye93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/eye/eye93.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/fuji2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/fuji2.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/fuji22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/fuji22.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/hands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/hands.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/machine.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/montreal2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/montreal2.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/montreal22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/montreal22.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/nature copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/nature copy.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/nature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/nature.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/rad1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/rad1.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/redb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/redb.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/skull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/skull.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/sw1 copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/sw1 copy.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/sw1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/sw1.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/wifi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/wifi2.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/wifi2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/wifi2s.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_images/wifi2sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_images/wifi2sr.c -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/SSD_1331_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/SSD_1331_registers.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/SSD_1332_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/SSD_1332_registers.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/SSD_1351_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/SSD_1351_registers.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/_common_16bit_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/_common_16bit_colors.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/_cpuCommons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/_cpuCommons.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/sumotoy_fontDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/sumotoy_fontDescription.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/sumotoy_iconDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/sumotoy_iconDescription.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_includes/sumotoy_imageDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_includes/sumotoy_imageDescription.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_settings/SSD_13XX_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_settings/SSD_13XX_settings.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_font.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_icon.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/ConverterPreset/sumotoy_image.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/Terminal_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/Terminal_9.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/akasha_cap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/akasha_cap.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/akashi20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/akashi20.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial10.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial20.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial_x2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/arial_x2.rar -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/defaultFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/defaultFont.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/mono_mid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/mono_mid.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/msShell14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/msShell14.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/orbitron14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/orbitron14.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/square_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/square_small.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/titlingCaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/titlingCaps.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/unborn_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/FontFiles/unborn_small.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/font_range.txt: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./0123456789:;<=>?\x0040ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_font_2.4.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_font_2.4.tmpl -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_icon_1.3.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_icon_1.3.tmpl -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_picture_1.3.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/_utility/for_LCD_Font_Converter/sumotoy_picture_1.3.tmpl -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/Benchmark/Benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/Benchmark/Benchmark.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/Benchmarks_Alternative/Benchmarks_Alternative.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/Benchmarks_Alternative/Benchmarks_Alternative.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/Benchmarks_Alternative/tests.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/Benchmarks_Alternative/tests.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/Clock_example/Clock_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/Clock_example/Clock_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/ColorMood_example/ColorMood_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/ColorMood_example/ColorMood_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/Solid3D_example/Solid3D_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/Solid3D_example/Solid3D_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/_ESP8266/Benchmark/Benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/_ESP8266/Benchmark/Benchmark.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/_ESP8266/WiFi_scan/WiFi_scan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/_ESP8266/WiFi_scan/WiFi_scan.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/_ESP8266/basicSetup/basicSetup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/_ESP8266/basicSetup/basicSetup.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/_ESP8266/drawLineAngle_example/drawLineAngle_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/_ESP8266/drawLineAngle_example/drawLineAngle_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/_ESP8266/externalFonts/externalFonts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/_ESP8266/externalFonts/externalFonts.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/avr_benchmark/avr_benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/avr_benchmark/avr_benchmark.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/basicSetup/basicSetup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/basicSetup/basicSetup.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/benchmark_version2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/benchmark_version2.rar -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/bigtest/bigtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/bigtest/bigtest.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/bubbles/bubbles.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/bubbles/bubbles.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/char_remap_example/char_remap_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/char_remap_example/char_remap_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/drawLineAngle_example/drawLineAngle_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/drawLineAngle_example/drawLineAngle_example.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/externalFonts/externalFonts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/externalFonts/externalFonts.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/graphictest/graphictest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/graphictest/graphictest.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/icon_inverse/icon_inverse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/icon_inverse/icon_inverse.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/icon_simple/icon_simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/icon_simple/icon_simple.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/icon_simple2/icon_simple2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/icon_simple2/icon_simple2.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/Debug/board.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/Debug/board.buildinfo -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/Debug/image_background.ino.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/Debug/image_background.ino.elf -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/Debug/image_background.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/Debug/image_background.ino.hex -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/__vm/.image_background.vsarduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/__vm/.image_background.vsarduino.h -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/__vm/Compile.vmps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/__vm/Compile.vmps.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/__vm/Configuration.Debug.vmps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/__vm/Configuration.Debug.vmps.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/__vm/Upload.vmps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/__vm/Upload.vmps.xml -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/image_background.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/image_background.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/image_background.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/image_background.vcxproj -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_background/image_background.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_background/image_background.vcxproj.filters -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_eyeAnimation/image_eyeAnimation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_eyeAnimation/image_eyeAnimation.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/image_simple/image_simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/image_simple/image_simple.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/ringMeterExample/ringMeterExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/ringMeterExample/ringMeterExample.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/roundGaugeWithBallistic/roundGaugeWithBallistic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/roundGaugeWithBallistic/roundGaugeWithBallistic.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/examples/textCentering/textCentering.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/examples/textCentering/textCentering.ino -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/keywords.txt -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/library.json -------------------------------------------------------------------------------- /Code/Driver/SSD_13XX/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Driver/SSD_13XX/library.properties -------------------------------------------------------------------------------- /Code/LoggerBoard/Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Buttons.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Buttons.h -------------------------------------------------------------------------------- /Code/LoggerBoard/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Color.h -------------------------------------------------------------------------------- /Code/LoggerBoard/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Logger.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Logger.h -------------------------------------------------------------------------------- /Code/LoggerBoard/LoggerBoard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/LoggerBoard.ino -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu.h -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu_Browse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu_Browse.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu_Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu_Clock.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu_Readings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu_Readings.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/Menu_Record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/Menu_Record.cpp -------------------------------------------------------------------------------- /Code/LoggerBoard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/LoggerBoard/README.md -------------------------------------------------------------------------------- /Code/Test_Screen/Test_Screen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Code/Test_Screen/Test_Screen.ino -------------------------------------------------------------------------------- /Images/Back.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Images/Back.JPG -------------------------------------------------------------------------------- /Images/Front.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/Images/Front.JPG -------------------------------------------------------------------------------- /PCB/Color_SAMD21_Rev3.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/PCB/Color_SAMD21_Rev3.1.xlsx -------------------------------------------------------------------------------- /PCB/Color_SAMD21_Rev3.1_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/PCB/Color_SAMD21_Rev3.1_Schematic.pdf -------------------------------------------------------------------------------- /PCB/Gerbers for Rev3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/PCB/Gerbers for Rev3.1.zip -------------------------------------------------------------------------------- /PCB/SAMD21G_Color_Oled_Rev3.1_Parts_Map.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/PCB/SAMD21G_Color_Oled_Rev3.1_Parts_Map.PDF -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-rankin/SAMD21G18A_Sensor_Board_with_Color_Oled/HEAD/README.md --------------------------------------------------------------------------------