Skip to content

Commit

Permalink
Home Accessory Architect v0.6.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RavenSystem committed Nov 12, 2019
1 parent 282ede6 commit db930a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions devices/HAA/main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Home Accessory Architect
*
* v0.6.10
* v0.6.11
*
* Copyright 2019 José Antonio Jiménez Campos (@RavenSystem)
*
Expand Down Expand Up @@ -46,8 +46,8 @@
#include <cJSON.h>

// 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
Expand Down Expand Up @@ -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);
}
}

Expand All @@ -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);
}
}

Expand Down
2 changes: 1 addition & 1 deletion external_libs/wifi_config_haa/content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.nonetworks{text-align:center;margin:1em 0;}
.field{margin-bottom:0.5em;}
.field.required label::before{content:"*";color:red;}
</style></head><body><div class="container"><h1>Home Accessory Architect v0.6.10</h1>
</style></head><body><div class="container"><h1>Home Accessory Architect v0.6.11</h1>
<form action="/settings" method="post">
<div class="field required conf">
<label for="conf">JSON Config:</label>
Expand Down

0 comments on commit db930a4

Please sign in to comment.