From db930a4737f1092825360e747196e7a69fef31a4 Mon Sep 17 00:00:00 2001 From: RavenSystem Date: Tue, 12 Nov 2019 14:05:30 +0100 Subject: [PATCH] Home Accessory Architect v0.6.11 --- devices/HAA/main.c | 10 +++++----- external_libs/wifi_config_haa/content/index.html | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devices/HAA/main.c b/devices/HAA/main.c index 378cc042..0b9e44ef 100644 --- a/devices/HAA/main.c +++ b/devices/HAA/main.c @@ -1,7 +1,7 @@ /* * Home Accessory Architect * - * v0.6.10 + * v0.6.11 * * Copyright 2019 José Antonio Jiménez Campos (@RavenSystem) * @@ -46,8 +46,8 @@ #include // Version -#define FIRMWARE_VERSION "0.6.10" -#define FIRMWARE_VERSION_OCTAL 000612 // Matches as example: firmware_revision 2.3.8 = 02.03.10 (octal) = config_number 020310 +#define FIRMWARE_VERSION "0.6.11" +#define FIRMWARE_VERSION_OCTAL 000613 // Matches as example: firmware_revision 2.3.8 = 02.03.10 (octal) = config_number 020310 // Characteristic types (ch_type) #define CH_TYPE_BOOL 0 @@ -581,7 +581,7 @@ void sensor_1(const uint8_t gpio, void *args, const uint8_t type) { } } - hkc_group_notify(ch); + homekit_characteristic_notify(ch, ch->value); } } @@ -604,7 +604,7 @@ void sensor_0(const uint8_t gpio, void *args, const uint8_t type) { cJSON *json_context = ch->context; do_actions(json_context, 0); - hkc_group_notify(ch); + homekit_characteristic_notify(ch, ch->value); } } diff --git a/external_libs/wifi_config_haa/content/index.html b/external_libs/wifi_config_haa/content/index.html index 4683a79e..72537bc2 100755 --- a/external_libs/wifi_config_haa/content/index.html +++ b/external_libs/wifi_config_haa/content/index.html @@ -19,7 +19,7 @@ .nonetworks{text-align:center;margin:1em 0;} .field{margin-bottom:0.5em;} .field.required label::before{content:"*";color:red;} -

Home Accessory Architect v0.6.10

+

Home Accessory Architect v0.6.11