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