forked from dawidchyrzynski/arduino-home-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cover.ino
68 lines (52 loc) · 2.08 KB
/
cover.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <Ethernet.h>
#include <ArduinoHA.h>
#define BROKER_ADDR IPAddress(192,168,0,17)
byte mac[] = {0x00, 0x10, 0xFA, 0x6E, 0x38, 0x4A};
EthernetClient client;
HADevice device(mac, sizeof(mac));
HAMqtt mqtt(client, device);
// "myCover" is unique ID of the cover. You should define your own ID.
HACover cover("myCover", HACover::PositionFeature);
// Cover with the position feature:
// HACover cover("myCover", HACover::PositionFeature);
void onCoverCommand(HACover::CoverCommand cmd, HACover* sender) {
if (cmd == HACover::CommandOpen) {
Serial.println("Command: Open");
sender->setState(HACover::StateOpening); // report state back to the HA
} else if (cmd == HACover::CommandClose) {
Serial.println("Command: Close");
sender->setState(HACover::StateClosing); // report state back to the HA
} else if (cmd == HACover::CommandStop) {
Serial.println("Command: Stop");
sender->setState(HACover::StateStopped); // report state back to the HA
}
// Available states:
// HACover::StateClosed
// HACover::StateClosing
// HACover::StateOpen
// HACover::StateOpening
// HACover::StateStopped
// You can also report position using setPosition() method
}
void setup() {
Serial.begin(9600);
Ethernet.begin(mac);
// optional device's details
device.setName("Arduino");
device.setSoftwareVersion("1.0.0");
cover.onCommand(onCoverCommand);
cover.setName("My cover"); // optional
// Optionally you can set retain flag for the HA commands
// cover.setRetain(true);
// Optionally you can enable optimistic mode for the HACover.
// In this mode you won't need to report state back to the HA when commands are executed.
// cover.setOptimistic(true);
mqtt.begin(BROKER_ADDR);
}
void loop() {
Ethernet.maintain();
mqtt.loop();
// You can also change the state at runtime as shown below.
// This kind of logic can be used if you want to control your cover using a button connected to the device.
// cover.setState(HACover::StateOpening); // use any state you want
}