本文整理汇总了Python中sensor.Sensor.PrimaryPower230V方法的典型用法代码示例。如果您正苦于以下问题:Python Sensor.PrimaryPower230V方法的具体用法?Python Sensor.PrimaryPower230V怎么用?Python Sensor.PrimaryPower230V使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sensor.Sensor
的用法示例。
在下文中一共展示了Sensor.PrimaryPower230V方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: max
# 需要导入模块: from sensor import Sensor [as 别名]
# 或者: from sensor.Sensor import PrimaryPower230V [as 别名]
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)
sensor.Alim24VdinsOK = upsData.Alim24VdinsOK ^1
sensor.BatteryLevel = upsData.BatteryLevel
sensor.ShutdownState = upsData.ShutdownState
except Exception as e:
print(e)
try:
blockTachy = bus.read_i2c_block_data(address_tachy, 0, 28)
tachyData = dataTachyBlower.from_buffer(bytearray(blockTachy))
#Mapping from TachyBlower
sensor.TemperatureInternalScreen = tachyData.TemperatureInternalScreen
sensor.CounterFans = tachyData.CounterFans
sensor.SpeedFan1 =tachyData.SpeedFan1