Skip to content

Commit a39ef72

Browse files
author
Jonas Linn
committed
Added another, much simpler led example. In this example the led can only turn on and off.
1 parent 11af195 commit a39ef72

File tree

3 files changed

+224
-0
lines changed

3 files changed

+224
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@
3030
*.exe
3131
*.out
3232
*.app
33+
34+
# Others
35+
.DS_STORE
+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
/*
2+
* simple_led.ino
3+
*
4+
* This accessory contains a builtin-led on ESP8266
5+
* Setup code: 111-11-111
6+
* The Flash-Button(D3, GPIO0) on NodeMCU:
7+
*
8+
* Created on: 2020-02-08
9+
* Author: Mixiaoxiao (Wang Bin)
10+
* Edited on: 2020-03-01
11+
* Edited by: euler271 (Jonas Linn)
12+
*/
13+
14+
#include <Arduino.h>
15+
#include <ESP8266WiFi.h>
16+
17+
#include <arduino_homekit_server.h>
18+
19+
#define PL(s) Serial.println(s)
20+
#define P(s) Serial.print(s)
21+
22+
//D0 16 //led
23+
//D3 0 //flash button
24+
//D4 2 //led
25+
26+
#define PIN_LED 16//D0
27+
28+
const char *ssid = "your-ssid";
29+
const char *password = "your-password";
30+
31+
void blink_led(int interval, int count) {
32+
for (int i = 0; i < count; i++) {
33+
builtinledSetStatus(true);
34+
delay(interval);
35+
builtinledSetStatus(false);
36+
delay(interval);
37+
}
38+
}
39+
40+
void setup() {
41+
Serial.begin(115200);
42+
Serial.setRxBufferSize(32);
43+
Serial.setDebugOutput(false);
44+
45+
pinMode(PIN_LED, OUTPUT);
46+
WiFi.mode(WIFI_STA);
47+
WiFi.persistent(false);
48+
WiFi.disconnect(false);
49+
WiFi.setAutoReconnect(true);
50+
WiFi.begin(ssid, password);
51+
52+
printf("\n");
53+
printf("SketchSize: %d B\n", ESP.getSketchSize());
54+
printf("FreeSketchSpace: %d B\n", ESP.getFreeSketchSpace());
55+
printf("FlashChipSize: %d B\n", ESP.getFlashChipSize());
56+
printf("FlashChipRealSize: %d B\n", ESP.getFlashChipRealSize());
57+
printf("FlashChipSpeed: %d\n", ESP.getFlashChipSpeed());
58+
printf("SdkVersion: %s\n", ESP.getSdkVersion());
59+
printf("FullVersion: %s\n", ESP.getFullVersion().c_str());
60+
printf("CpuFreq: %dMHz\n", ESP.getCpuFreqMHz());
61+
printf("FreeHeap: %d B\n", ESP.getFreeHeap());
62+
printf("ResetInfo: %s\n", ESP.getResetInfo().c_str());
63+
printf("ResetReason: %s\n", ESP.getResetReason().c_str());
64+
DEBUG_HEAP();
65+
homekit_setup();
66+
DEBUG_HEAP();
67+
blink_led(200, 3);
68+
}
69+
70+
void loop() {
71+
homekit_loop();
72+
delay(5);
73+
}
74+
75+
void builtinledSetStatus(bool on) {
76+
digitalWrite(PIN_LED, on ? LOW : HIGH);
77+
}
78+
79+
//==============================
80+
// Homekit setup and loop
81+
//==============================
82+
83+
extern "C" homekit_server_config_t config;
84+
extern "C" homekit_characteristic_t name;
85+
extern "C" void led_toggle();
86+
extern "C" void accessory_init();
87+
88+
uint32_t next_heap_millis = 0;
89+
90+
void homekit_setup() {
91+
accessory_init();
92+
uint8_t mac[WL_MAC_ADDR_LENGTH];
93+
WiFi.macAddress(mac);
94+
int name_len = snprintf(NULL, 0, "%s_%02X%02X%02X", name.value.string_value, mac[3], mac[4], mac[5]);
95+
char *name_value = (char*)malloc(name_len + 1);
96+
snprintf(name_value, name_len + 1, "%s_%02X%02X%02X", name.value.string_value, mac[3], mac[4], mac[5]);
97+
name.value = HOMEKIT_STRING_CPP(name_value);
98+
99+
arduino_homekit_setup(&config);
100+
101+
}
102+
103+
void homekit_loop() {
104+
arduino_homekit_loop();
105+
uint32_t time = millis();
106+
if (time > next_heap_millis) {
107+
INFO("heap: %d, sockets: %d", ESP.getFreeHeap(), arduino_homekit_connected_clients_count());
108+
next_heap_millis = time + 5000;
109+
}
110+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
/*
2+
* simple_led_accessory.c
3+
* Define the accessory in pure C language using the Macro in characteristics.h
4+
*
5+
* Created on: 2020-02-08
6+
* Author: Mixiaoxiao (Wang Bin)
7+
* Edited on: 2020-03-01
8+
* Edited by: euler271 (Jonas Linn)
9+
*/
10+
11+
#include <Arduino.h>
12+
#include <homekit/types.h>
13+
#include <homekit/homekit.h>
14+
#include <homekit/characteristics.h>
15+
#include <stdio.h>
16+
#include <port.h>
17+
18+
//const char * buildTime = __DATE__ " " __TIME__ " GMT";
19+
20+
#define ACCESSORY_NAME ("ESP8266_LED")
21+
#define ACCESSORY_SN ("SN_0123456") //SERIAL_NUMBER
22+
#define ACCESSORY_MANUFACTURER ("Arduino Homekit")
23+
#define ACCESSORY_MODEL ("ESP8266")
24+
25+
#define PIN_LED 2//D4
26+
27+
bool led_power = false; //true or flase
28+
29+
homekit_value_t led_on_get() {
30+
return HOMEKIT_BOOL(led_power);
31+
}
32+
33+
void led_on_set(homekit_value_t value) {
34+
if (value.format != homekit_format_bool) {
35+
printf("Invalid on-value format: %d\n", value.format);
36+
return;
37+
}
38+
led_power = value.bool_value;
39+
led_update();
40+
}
41+
42+
homekit_characteristic_t name = HOMEKIT_CHARACTERISTIC_(NAME, ACCESSORY_NAME);
43+
homekit_characteristic_t serial_number = HOMEKIT_CHARACTERISTIC_(SERIAL_NUMBER, ACCESSORY_SN);
44+
homekit_characteristic_t led_on = HOMEKIT_CHARACTERISTIC_(ON, false, .getter=led_on_get, .setter=led_on_set);
45+
46+
void led_update() {
47+
if (led_power) {
48+
printf("ON\n");
49+
digitalWrite(PIN_LED, LOW);
50+
} else {
51+
printf("OFF\n");
52+
digitalWrite(PIN_LED, HIGH);
53+
}
54+
}
55+
56+
void led_toggle() {
57+
led_on.value.bool_value = !led_on.value.bool_value;
58+
led_on.setter(led_on.value);
59+
homekit_characteristic_notify(&led_on, led_on.value);
60+
}
61+
62+
void accessory_identify(homekit_value_t _value) {
63+
printf("accessory identify\n");
64+
for (int j = 0; j < 3; j++) {
65+
led_power = true;
66+
led_update();
67+
delay(100);
68+
led_power = false;
69+
led_update();
70+
delay(100);
71+
}
72+
}
73+
74+
homekit_accessory_t *accessories[] =
75+
{
76+
HOMEKIT_ACCESSORY(
77+
.id = 1,
78+
.category = homekit_accessory_category_lightbulb,
79+
.services=(homekit_service_t*[]){
80+
HOMEKIT_SERVICE(ACCESSORY_INFORMATION,
81+
.characteristics=(homekit_characteristic_t*[]){
82+
&name,
83+
HOMEKIT_CHARACTERISTIC(MANUFACTURER, ACCESSORY_MANUFACTURER),
84+
&serial_number,
85+
HOMEKIT_CHARACTERISTIC(MODEL, ACCESSORY_MODEL),
86+
HOMEKIT_CHARACTERISTIC(FIRMWARE_REVISION, "0.0.1"),
87+
HOMEKIT_CHARACTERISTIC(IDENTIFY, accessory_identify),
88+
NULL
89+
}),
90+
HOMEKIT_SERVICE(LIGHTBULB, .primary=true,
91+
.characteristics=(homekit_characteristic_t*[]){
92+
HOMEKIT_CHARACTERISTIC(NAME, "Led"),
93+
&led_on,
94+
NULL
95+
}),
96+
NULL
97+
}),
98+
NULL
99+
};
100+
101+
homekit_server_config_t config = {
102+
.accessories = accessories,
103+
.password = "111-11-111",
104+
//.on_event = on_homekit_event,
105+
.setupId = "ABCD"
106+
};
107+
108+
void accessory_init() {
109+
pinMode(PIN_LED, OUTPUT);
110+
led_update();
111+
}

0 commit comments

Comments
 (0)