我买了一个Energenie模块和插头,用于树莓派。我是GPIO的新手并且设法让它在他们的网站上使用演示脚本(https://energenie4u.co.uk/res/pdfs/ENER314%20UM.pdf)
我已经遵循了这里的说明,安装了Python 2(https://libraries.io/pypi/energenie)因为我只想打开插头,等待一段时间然后关闭,但无法让它工作使用python脚本我使用上面的链接编写。我错过了什么?这是脚本:
from energenie import switch_on, switch_off
print("Sockets 1-4 or 0 for all")
while True:
socket = int(raw_input('Turn socket on: '))
switch_on(socket)
socket = int(raw_input("Turn socket off: "))
switch_off(socket)
我也试过这个:
from energenie import switch_on, switch_off
from time import sleep
# turn some plug sockets on, then turn them off after 10 seconds
switch_on()
sleep(10)
switch_off()