Beispiel #1
0
         #print(i)
         #print(p)
         sensor.PowerPlayer19V= v
         sensor.PowerPlayer4A= i/1000.0
         sensor.PowerPlayerPower = p/1000.0
 except Exception as e:
     print("inaPowerSense")
     print(e)
 #Ina Power Sense
 try:
     values = [0]*4
     for i in range(4):
         # Read the specified ADC channel using the previously set gain value.
         values[i] = adc.read_adc(i, gain=GAIN)
     sensor.SecondaryPowerScreen5V= max(0,values[0] / 250.8)
     sensor.PrimaryPowerScreen5V= max(0,values[1] / 250.8)
     sensor.PrimaryPowerScreen24V= max(0,values[2] / 53.36)
 except Exception as e:
     print("PowerSense")
     print(e)
 
 try:
     blockUps = bus.read_i2c_block_data(address_ups, 0, 24)
     upsData = dataUPS.from_buffer(bytearray(blockUps))
     dataUpsToLora = convertByteArrayToString(bytearray(blockUps)) 
     #print(dataUpsToLora)
     #Mapping from UPS
     sensor.PrimaryPowerDinRail230V =upsData.PrimaryPowerDinRail230V
     sensor.PrimaryPower230V = upsData.PrimaryPower230V
     sensor.Alim24VFsOK = upsData.Alim24VFsOK ^1
     #print(upsData.Alim24VFsOK)