diff options
| author | D Delmar Davis <don@suspectcevices.com> | 2025-01-31 22:51:55 -0800 |
|---|---|---|
| committer | D Delmar Davis <don@suspectcevices.com> | 2025-01-31 22:51:55 -0800 |
| commit | 4c5b3cfdfbf724e782b960070ee806195bcdfdaa (patch) | |
| tree | 2ebffde3016809c062bcb73f7a85db0e2e8a2a6c /bin | |
| parent | 60819bbd0d550769153ba2545e055e28342cea32 (diff) | |
at least there are temps
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/lcdtemp.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/lcdtemp.py b/bin/lcdtemp.py index 7fd3e55..c576c41 100755 --- a/bin/lcdtemp.py +++ b/bin/lcdtemp.py @@ -12,9 +12,9 @@ cmd = "hostname -I | cut -d' ' -f1" IP = subprocess.check_output(cmd, shell=True).decode("utf-8") cmd = "date +%X\ %d%b%y" TimeDate = subprocess.check_output(cmd, shell=True).decode("utf-8") -cmd = "fetchtemp.py" +cmd = "/usr/local/merlot/bin/readtemp.py" LocalTemp = subprocess.check_output(cmd, shell=True).decode("utf-8") -cmd = 'gathertemps.py' +cmd = '/usr/local/merlot/bin/gathertemps.py' PromData = subprocess.check_output(cmd, shell=True).decode("utf-8") temps=PromData.split() @@ -32,18 +32,16 @@ lcd = character_lcd.Character_LCD_I2C(i2c, lcd_columns, lcd_rows) # Turn backlight on lcd.backlight = True # Print a two line message -lcd.message = CMD + IP +lcd.message = IP # Wait 5s time.sleep(5) lcd.clear() -# Print two line message right to left -lcd.text_direction = lcd.RIGHT_TO_LEFT lcd.message = TimeDate # Wait 5s time.sleep(5) lcd.clear() lcd.cursor = True -lcd.message = temps +lcd.message = LocalTemp # Wait 5s time.sleep(5) # Display blinking cursor |
