Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```