夏休みの工作特別企画 電気ポットをwifiにする



ソノフは、コンセントをwiifiにするスマートプラグです。標準でスマートフォンから制御できます。

中身は、ESP8266でpythonから制御できるはずでした。


ともにバグのために停止しました。

色々ググった結果iftttにsonoffのアクションサービスがあることがわかりました。

Createを選択します。

+を選択します。

Webhooksを選択します。

トリガーは、Web requestを選択します。

適当な名前を付けます。ここでは、plugOn

that + を選択します。


Turn 1 Channel plugを選択します。

Create Action します。

Finishします。


赤丸をクリックします。

Documentationをクリックします。

on と offを作成し各々のweb requestをコピーします。

test.py
import requests,time
on= 'https://maker.ifttt.com/trigger/switchOn/with/key/xxxxxxxxxxxxxxxx'
off='https://maker.ifttt.com/trigger/switchOff/with/key/xxxxxxxxxxxxxxxx'

r = requests.post(on)
print(r.text)
time.sleep(3)
r = requests.post(off)
print(r.text)