Bonjour je suis nouveau dans home-assistant (±2 mois) avant j étais sous jeedom
j’ai déjà intégrer pas mal de mes objets connectes mais je cale sur le retour d état de 2 cartes relais ,
la 1ere c’est une carte 8 relais cheap mais qui fonctionne très bien (un plugin existait sous jeedom donc pas de problèmes ) https://fr.aliexpress.com/item/32600773799.html
comment ajouter le retour d état ??
et la seconde c’est une carte a base d arduino programmer par mes soins (+ou- code que j’ai trouver sur le net et que j’ai adapter (je ne suis pas du tout programmeur))
le retour d’état ce limite a savoir si dans la page html en "<h4></h4>" il y a un « 1 » ou un « 0 »
avez vous une idée pour m aidée merci
Ma configuration
Texte à remplacer par votre configuration
Comment récupérer ma configuration :
Dans votre HA, Menu latéral Configuration > Info > bouton copier > Pour Github
le premier « raspberry » affiche les infos de mon server HA (qui n est pas un raspberry mais bref ! )
le second « deluge » je n ais pas encore trouver comment l’afficher (pas vraiment chercher non plus )
void dashboardPage(EthernetClient &client) {
client.println("<!DOCTYPE HTML><html><head>");
client.println("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"></head><body>");
client.println("<h3>Arduino Web Server - <a href=\"/\">Refresh</a></h3>");
// Generates buttons to control the relay
client.println("<h4>Relay 1 - State: " + relay1State + "</h4>");
// If relay is off, it shows the button to turn the output on
if(relay1State == "Off"){
client.println("<a href=\"/relay1on\"><button>ON</button></a>");
}
// If relay is on, it shows the button to turn the output off
else if(relay1State == "On"){
client.println("<a href=\"/relay1off\"><button>OFF</button></a>");
}
client.println("</body></html>");
}