本文整理汇总了Python中pytomation.devices.Light.ignore_dark方法的典型用法代码示例。如果您正苦于以下问题:Python Light.ignore_dark方法的具体用法?Python Light.ignore_dark怎么用?Python Light.ignore_dark使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pytomation.devices.Light
的用法示例。
在下文中一共展示了Light.ignore_dark方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Motion
# 需要导入模块: from pytomation.devices import Light [as 别名]
# 或者: from pytomation.devices.Light import ignore_dark [as 别名]
m_family = Motion('D8', sg)
# Motion sensor is hardwired and immediate OFF.. Want to give it some time to still detect motion right after
m_family.delay_still(2*60)
ph_sun = Location('35.2269', '-80.8433', tz='US/Eastern', mode=Location.MODE.STANDARD, is_dst=True)
# Turn on the foyer light at night when either the door is opened or family PIR is tripped.
l_foyer = Light((49, 3), (upb, d_foyer, m_family, ph_sun))
# After being turned on, turn off again after 2 minutes of inactivity.
l_foyer.delay_off(2*60)
# Turn off the light no matter what at 11:59pm
l_foyer.time_off('11:59pm')
# Do not turn on the light automatically when it is night time (indoor light)
# Only looks at dark for restricing the whether the light should come on
l_foyer.ignore_dark(True)
##################### USER CODE ###############################
#Manually controlling the light
l_foyer.on()
l_foyer.off()
# Loop control
def MainLoop(*args, **kwargs):
print 'Im in a main loop!'
if l_foyer.state == State.ON:
l_foyer.off()
else:
l_foyer.on()