|
| 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 | +} |
0 commit comments