Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m-rtijn/lcd-echo
This program uses my lcd-i2c module to write from the terminal directly to a simple character LCD.
https://github.com/m-rtijn/lcd-echo
lcd python raspberry-pi raspberrypi
Last synced: 7 days ago
JSON representation
This program uses my lcd-i2c module to write from the terminal directly to a simple character LCD.
- Host: GitHub
- URL: https://github.com/m-rtijn/lcd-echo
- Owner: m-rtijn
- License: gpl-3.0
- Created: 2016-06-29T10:05:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T16:17:48.000Z (almost 8 years ago)
- Last Synced: 2024-11-13T23:42:01.356Z (2 months ago)
- Topics: lcd, python, raspberry-pi, raspberrypi
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lcd-echo
This program uses my LCD_i2c.py module to write from the terminal directly
to a simple character LCD.
This module has to be in the same directory as the lcd-echo program in order to
function correctly.To get the i2c address of the LCD, it reads from the file "/etc/lcd-echo.conf"
This configuration file should be formatted in the following way:
```
address = 0x27
width = 16
max_lines = 2
backlight = True
clear_time = 60
```
Please note that this configuration file will not be generated automatically.# Usage
lcd-echo accepts the following options:
```
-h, --help show help message
-s [STRING], --string [STRING] string to write to the LCD
-c, --clear clear the LCD
```