在带有树莓派2的i2c上显示多个LCD

时间:2017-02-16 22:41:12

标签: python raspberry-pi i2c lcd

大家。我看了很多,第一次尝试通过i2c上的两个LCD显示器进行通信。一切都运行良好,但现在我只想找到在其中一个连接失败(接触不良,断电等)的情况下初始化任何LCD上的通信的方法。根据这段代码,他们同时分开工作。但是,当我尝试断开主线或部分电线时,一切都会出现问题。该程序继续工作没有问题,但LED显示器的指示大多数时间是不可能的,我想知道我做错了什么,因为我阅读并看了很多例子和问题,但仍然找不到答案

这是python代码:

import lcddriver
from time import *
import sys

a=0
b=0
#https://www.youtube.com/watch?v=YUII39FzUb4     my reference

lcd = lcddriver.lcd(0x27) #Address firs display
print ("Display 1 done")
lcd2 = lcddriver.lcd(0x23) #Address second display
print ("Display 2 done")
sleep(1)
lcd.lcd_display_string("    ElectroMESH ", 1)
lcd.lcd_display_string("Prueba Raspberry y", 2)
#One part in the first display
lcd2.lcd_display_string("LCD 20x4 via i2c ", 3)
lcd2.lcd_display_string("      via I2C", 4)
#The other part in the second display
sleep(1)

for i in range(1,86400):

   try:
      a=1
      b=0           #Here I'm trying to make an idea of display status flag
      lcd.lcd_display_string(str(i), 4, 1)
      a=0
      b=1
      lcd2.lcd_display_string(str(i+8), 2, 1) #i+8 to ensure differents texts 
      b=0
      #Activate flag after indication
      except IOError:     #The action that runs after display is lost 
      print ("sistema desconectado a y b")
      if a and b: 
        lcd = lcddriver.lcd(0x27)
        print ("Sistema 0x27 inicializado if a y b")
        a = 0
        lcd2 = lcddriver.lcd(0x23)
        print ("Sistema 0x23 inicializado if a y b")
        b = 0
        sys.exc_clear()
      elif a==1 and b==0:
        lcd = lcddriver.lcd(0x27)
        print ("Sistema 0x27 inicializado if a")
        a = 0
        sys.exc_clear()
      elif a==0 and b==1:
        lcd2 = lcddriver.lcd(0x23)
        print ("Sistema 0x23 inicializado if b")
        b = 0
      else:
        print ("OK...conexion recuperada")
      sys.exc_clear()
sleep(1)   #Each second prints in the terminal to show results
print(i)

我尝试过timeout_exceptions但是没有成功。如果您需要,希望得到任何答案或要求更多详细信息,因为这是我的第一篇文章,我正在尽力提出要求。

1 个答案:

答案 0 :(得分:-1)

过了一会儿并且阅读了很多,我可以使用node-red,try和exceptions以及MQTT服务器找到非常有用的信息和实用程序。在那之后一切正常,事情只是为了适应我在网络和手册上找到的一切。