pepoalexadoとは
Alexaで電気をつけたり、消したり、温度を聞いたりする為に作成、IOTハウスに分散しているRaspberry PiへGPIOの出力やjsonデータを取得します
pepoalexado
usage /usr/local/bin/pepoalexado host user password [write->chno:0-17 [DO:0|1] [timer->1 to 300000ms]] or read->json_name
GPIO 3 ON
pepoalexado iot001.local remote hand 3 1
GPIO 3 OFF
pepoalexado iot001.local remote hand 3 0
GPIOガスセンサーBME680のjsonデータを取得
pepoalexado iot001.local remote hand gpio_i2c
{ “date”: “08:47:11”, “temp”: “27.5℃”, “hum”: “79.7%”, “pres”: “1006hPa”, “gas”: “2055427Ω”, “iaq”: “17” }
Alexaのhomebridge/config.json設定例
アレクサ、ダインニング電気つけて
アレクサ、ダインニング電気消して
“platforms”: [
{
“platform”: “Alexa”,
“name”: “Alexa”,
“username”: “user”,
“password”: “pass”
}
],
“accessories”: [
{
“accessory”: “CMD”,
“name”: “ダイニング電気”,
“on_cmd”: “sudo /usr/local/bin/pepoalexado iot001.local remote hand 3 1”,
“off_cmd”: “sudo /usr/local/bin/pepoalexado iot001.local remote hand 3 0”
},
Download
https://osdn.net/projects/pepolinux/releases/72839