Browse Source

LCD optional

rbs-nas 11 months ago
parent
commit
69374a8643
3 changed files with 13 additions and 7 deletions
  1. 2 2
      i2c_lib.py
  2. 10 5
      lcd.py
  3. 1 0
      requirements.txt

+ 2 - 2
i2c_lib.py

@@ -1,10 +1,10 @@
-import smbus
+from smbus2 import SMBus
 from time import *
 
 class i2c_device:
    def __init__(self, addr, port=1):
       self.addr = addr
-      self.bus = smbus.SMBus(port)
+      self.bus = SMBus(port)
 
 # Write a single command
    def write_cmd(self, cmd):

+ 10 - 5
lcd.py

@@ -1,10 +1,15 @@
 import lcddriver
 from time import *
 
-lcd = lcddriver.lcd()
+lcd = None
 
-lcd.lcd_display_string("Freya, Robert", 1)
-lcd.lcd_display_string("und Elisabeth Clara", 2)
-lcd.lcd_display_string("05.05.2024 20:18", 3)
-lcd.lcd_display_string("================", 4)
+try:
+    lcd = lcddriver.lcd()
+except OSError:
+    pass
 
+
+def write(station, title):
+    if lcd:
+    	lcd.lcd_display_string(station, 1)
+    	lcd.lcd_display_string(title, 3)

+ 1 - 0
requirements.txt

@@ -1 +1,2 @@
 python-mpd2
+smbus2