├── BMP180.py ├── HC-SR04.py ├── ILI9341 ├── colors.py ├── decorators.py ├── examples │ ├── 01_basic │ │ ├── 01a_first_step.jpg │ │ ├── 01a_first_step.py │ │ ├── 02a_axes_and_pixel.jpg │ │ ├── 02a_axes_and_pixel.py │ │ ├── 03a_about_color.py │ │ ├── 03b_rgbTo565.jpg │ │ ├── 03b_rgbTo565.py │ │ ├── 04a_fillMonocolor.py │ │ ├── 04b_fillMonocolor.jpg │ │ ├── 04b_fillMonocolor.py │ │ ├── 05a_println.jpg │ │ ├── 05a_println.py │ │ ├── 05b_charstest.jpg │ │ ├── 05b_charstest.py │ │ ├── 05d_decode_char.jpg │ │ ├── 05d_decode_char.py │ │ ├── 05e_println.py │ │ ├── 06a_drawline.jpg │ │ ├── 06a_drawline.py │ │ ├── 06b_drawline.jpg │ │ ├── 06b_drawline.py │ │ ├── 06c_drawline.jpg │ │ ├── 06c_drawline.py │ │ ├── 07a_drawrect.jpg │ │ └── 07a_drawrect.py │ └── readme.md ├── exceptions.py ├── fonts │ ├── __init__.py │ ├── arial_14.py │ ├── arrows_15.py │ ├── arrows_23.py │ ├── etypo_13.py │ ├── etypo_23.py │ ├── heyd_23.py │ ├── pitch_15.py │ ├── pitch_23.py │ ├── vera_10.py │ ├── vera_15.py │ ├── vera_23.py │ ├── vera_m10.py │ ├── vera_m15.py │ ├── vera_m23.py │ ├── veram_15.py │ ├── veram_23.py │ ├── veram_m15.py │ └── veram_m23.py ├── images │ ├── MP_powered.bmp │ ├── display.bmp │ ├── gradient.bmp │ ├── micropython.bmp │ ├── test.bmp │ └── wire.bmp ├── lcd.py ├── readme.md ├── registers.py ├── tests.py └── wirings │ └── tft-touch-shield │ ├── readme.md │ └── wiring.jpg └── README.md /BMP180.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/BMP180.py -------------------------------------------------------------------------------- /HC-SR04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/HC-SR04.py -------------------------------------------------------------------------------- /ILI9341/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/colors.py -------------------------------------------------------------------------------- /ILI9341/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/decorators.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/01a_first_step.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/01a_first_step.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/01a_first_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/01a_first_step.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/02a_axes_and_pixel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/02a_axes_and_pixel.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/02a_axes_and_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/02a_axes_and_pixel.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/03a_about_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/03a_about_color.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/03b_rgbTo565.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/03b_rgbTo565.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/03b_rgbTo565.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/03b_rgbTo565.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/04a_fillMonocolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/04a_fillMonocolor.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/04b_fillMonocolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/04b_fillMonocolor.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/04b_fillMonocolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/04b_fillMonocolor.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05a_println.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05a_println.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05a_println.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05a_println.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05b_charstest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05b_charstest.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05b_charstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05b_charstest.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05d_decode_char.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05d_decode_char.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05d_decode_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05d_decode_char.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/05e_println.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/05e_println.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06a_drawline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06a_drawline.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06a_drawline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06a_drawline.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06b_drawline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06b_drawline.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06b_drawline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06b_drawline.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06c_drawline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06c_drawline.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/06c_drawline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/06c_drawline.py -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/07a_drawrect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/07a_drawrect.jpg -------------------------------------------------------------------------------- /ILI9341/examples/01_basic/07a_drawrect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/01_basic/07a_drawrect.py -------------------------------------------------------------------------------- /ILI9341/examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/examples/readme.md -------------------------------------------------------------------------------- /ILI9341/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/exceptions.py -------------------------------------------------------------------------------- /ILI9341/fonts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/__init__.py -------------------------------------------------------------------------------- /ILI9341/fonts/arial_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/arial_14.py -------------------------------------------------------------------------------- /ILI9341/fonts/arrows_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/arrows_15.py -------------------------------------------------------------------------------- /ILI9341/fonts/arrows_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/arrows_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/etypo_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/etypo_13.py -------------------------------------------------------------------------------- /ILI9341/fonts/etypo_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/etypo_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/heyd_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/heyd_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/pitch_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/pitch_15.py -------------------------------------------------------------------------------- /ILI9341/fonts/pitch_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/pitch_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_10.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_15.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_m10.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_m15.py -------------------------------------------------------------------------------- /ILI9341/fonts/vera_m23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/vera_m23.py -------------------------------------------------------------------------------- /ILI9341/fonts/veram_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/veram_15.py -------------------------------------------------------------------------------- /ILI9341/fonts/veram_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/veram_23.py -------------------------------------------------------------------------------- /ILI9341/fonts/veram_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/veram_m15.py -------------------------------------------------------------------------------- /ILI9341/fonts/veram_m23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/fonts/veram_m23.py -------------------------------------------------------------------------------- /ILI9341/images/MP_powered.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/MP_powered.bmp -------------------------------------------------------------------------------- /ILI9341/images/display.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/display.bmp -------------------------------------------------------------------------------- /ILI9341/images/gradient.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/gradient.bmp -------------------------------------------------------------------------------- /ILI9341/images/micropython.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/micropython.bmp -------------------------------------------------------------------------------- /ILI9341/images/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/test.bmp -------------------------------------------------------------------------------- /ILI9341/images/wire.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/images/wire.bmp -------------------------------------------------------------------------------- /ILI9341/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/lcd.py -------------------------------------------------------------------------------- /ILI9341/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/readme.md -------------------------------------------------------------------------------- /ILI9341/registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/registers.py -------------------------------------------------------------------------------- /ILI9341/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/tests.py -------------------------------------------------------------------------------- /ILI9341/wirings/tft-touch-shield/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/wirings/tft-touch-shield/readme.md -------------------------------------------------------------------------------- /ILI9341/wirings/tft-touch-shield/wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/ILI9341/wirings/tft-touch-shield/wiring.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropod7/pyboard_drive/HEAD/README.md --------------------------------------------------------------------------------