当前位置: 首页>>代码示例>>Python>>正文


Python Sensor.PrimaryPowerScreen24V方法代码示例

本文整理汇总了Python中sensor.Sensor.PrimaryPowerScreen24V方法的典型用法代码示例。如果您正苦于以下问题:Python Sensor.PrimaryPowerScreen24V方法的具体用法?Python Sensor.PrimaryPowerScreen24V怎么用?Python Sensor.PrimaryPowerScreen24V使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sensor.Sensor的用法示例。


在下文中一共展示了Sensor.PrimaryPowerScreen24V方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: print

# 需要导入模块: from sensor import Sensor [as 别名]
# 或者: from sensor.Sensor import PrimaryPowerScreen24V [as 别名]
         #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)
     sensor.Alim24VdinsOK = upsData.Alim24VdinsOK ^1
开发者ID:databang-io,项目名称:rmon-agent,代码行数:33,代码来源:agent.py


注:本文中的sensor.Sensor.PrimaryPowerScreen24V方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。