Bonjour,
Je cherche à intégrer à mon Eedomus, un bouton 4 actions Wifi.
J'ai créer un actionneur Http, j'ai l'adresse IP et Mac du bouton, mais je ne sais pas trop quoi rentrer dans les Valeurs pour l'activer.
J'ai trouvé une documentation qui explique brièvement l'adresse à rentrer mais cela ne fonctionne pas. Il est expliqué :
WIFI Button – REST API
The myStrom WiFi Button offers a REST API (REST = representational State Transfer).
The interface allows you to access/control the Button directly from your local network independently from myStrom - you don’t need a myStrom account or the myStrom app.
With those rules you can integrate the button in almost any environment.
Important Note
The interface is transparent and has no authentication. If someone has access to your local network, they will be able to control your button.
Please apply strong security mechanisms to protect your network.
Get Info
http://[IP]/api/v1/device/[MAC]
Response
{
"[MAC]": {"type": "button", "battery": true, "reachable": true, "meshroot": false, "charge": false, "voltage": 3.705, "fw_version": "2.37", "single": "", "double": "", "long": "", "touch": ""}
}
Set Config
curl -v -d "single=<url>&double=<url>&long=<url>&touch=<url>" http://[IP]/api/v1/device/[MAC]
Et en exemple il donne ceci :
Simple Example für myStrom Switch
curl -v -d "single=get://[IP of Switch]/toggle" http://[IP]/api/v1/device/[MAC]
Si quelqu'un peu me donner un petit coup de main, merci beaucoup.