This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
forked from dawidchyrzynski/arduino-home-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fan.ino
67 lines (49 loc) · 1.87 KB
/
fan.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
#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);
// HAFan::SpeedsFeature enables support for setting different speeds of fan.
// You can skip this argument if you don't need speed management.
// "ventilation" is unique ID of the fan. You should define your own ID.
HAFan fan("ventilation", HAFan::SpeedsFeature);
void onStateCommand(bool state, HAFan* sender) {
Serial.print("State: ");
Serial.println(state);
sender->setState(state); // report state back to the Home Assistant
}
void onSpeedCommand(uint16_t speed, HAFan* sender) {
Serial.print("Speed: ");
Serial.println(speed);
sender->setSpeed(speed); // report speed back to the Home Assistant
}
void setup() {
Serial.begin(9600);
// you don't need to verify return status
Ethernet.begin(mac);
// set device's details (optional)
device.setName("Arduino");
device.setSoftwareVersion("1.0.0");
// configure fan (optional)
fan.setName("Bathroom");
fan.setSpeedRangeMin(1);
fan.setSpeedRangeMax(100);
// Optionally you can set retain flag for the HA commands
// fan.setRetain(true);
// Optionally you can enable optimistic mode for the HAFan.
// In this mode you won't need to report state back to the HA when commands are executed.
// fan.setOptimistic(true);
// handle fan states
fan.onStateCommand(onStateCommand);
fan.onSpeedCommand(onSpeedCommand);
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 fan using a button connected to the device.
// fan.setState(true); // true (ON) or false (OFF)
}