├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ ├── compatibility.md │ ├── demo.md │ ├── documentation.md │ └── other.md ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── configs ├── modules └── raspi-blacklist.conf ├── demo_clock.py ├── demo_clock_and_IP.py ├── demo_forex.py ├── demo_lcd.py ├── demo_lcd_backlight.py ├── demo_lcd_custom_characters.py ├── demo_lcd_extended_strings.py ├── demo_lcd_process_bar.py ├── demo_netmonit.py ├── demo_scrolling_text.py ├── demo_tiny_dashboard.py ├── drivers ├── __init__.py └── i2c_dev.py ├── imgs ├── characters_table.png ├── demo_backlight.gif ├── demo_custom_characters.jpg ├── demo_extended_strings.jpg ├── demo_forex.gif ├── demo_home_automation.gif ├── demo_ip.jpg ├── demo_netmonitor.gif ├── demo_progress_bar.jpg ├── demo_simple_strings.jpg ├── demo_tiny_dashboard.gif └── thumb-yt-rpiguy-lcd-tutorial.png ├── install.sh └── setup.sh /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/.github/ISSUE_TEMPLATE/compatibility.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/.github/ISSUE_TEMPLATE/demo.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | .git 3 | .idea 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/README.md -------------------------------------------------------------------------------- /configs/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/configs/modules -------------------------------------------------------------------------------- /configs/raspi-blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/configs/raspi-blacklist.conf -------------------------------------------------------------------------------- /demo_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_clock.py -------------------------------------------------------------------------------- /demo_clock_and_IP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_clock_and_IP.py -------------------------------------------------------------------------------- /demo_forex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_forex.py -------------------------------------------------------------------------------- /demo_lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_lcd.py -------------------------------------------------------------------------------- /demo_lcd_backlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_lcd_backlight.py -------------------------------------------------------------------------------- /demo_lcd_custom_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_lcd_custom_characters.py -------------------------------------------------------------------------------- /demo_lcd_extended_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_lcd_extended_strings.py -------------------------------------------------------------------------------- /demo_lcd_process_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_lcd_process_bar.py -------------------------------------------------------------------------------- /demo_netmonit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_netmonit.py -------------------------------------------------------------------------------- /demo_scrolling_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_scrolling_text.py -------------------------------------------------------------------------------- /demo_tiny_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/demo_tiny_dashboard.py -------------------------------------------------------------------------------- /drivers/__init__.py: -------------------------------------------------------------------------------- 1 | from .i2c_dev import Lcd, CustomCharacters 2 | -------------------------------------------------------------------------------- /drivers/i2c_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/drivers/i2c_dev.py -------------------------------------------------------------------------------- /imgs/characters_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/characters_table.png -------------------------------------------------------------------------------- /imgs/demo_backlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_backlight.gif -------------------------------------------------------------------------------- /imgs/demo_custom_characters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_custom_characters.jpg -------------------------------------------------------------------------------- /imgs/demo_extended_strings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_extended_strings.jpg -------------------------------------------------------------------------------- /imgs/demo_forex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_forex.gif -------------------------------------------------------------------------------- /imgs/demo_home_automation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_home_automation.gif -------------------------------------------------------------------------------- /imgs/demo_ip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_ip.jpg -------------------------------------------------------------------------------- /imgs/demo_netmonitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_netmonitor.gif -------------------------------------------------------------------------------- /imgs/demo_progress_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_progress_bar.jpg -------------------------------------------------------------------------------- /imgs/demo_simple_strings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_simple_strings.jpg -------------------------------------------------------------------------------- /imgs/demo_tiny_dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/demo_tiny_dashboard.gif -------------------------------------------------------------------------------- /imgs/thumb-yt-rpiguy-lcd-tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/imgs/thumb-yt-rpiguy-lcd-tutorial.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/install.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/lcd/HEAD/setup.sh --------------------------------------------------------------------------------