File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Original file line number Diff line number Diff line change 1
1
name =Homeyduino
2
- version =1.0.1
2
+ version =1.0.2
3
3
author =Athom B.V.
4
4
maintainer =Athom B.V. <renze@athom.nl>
5
5
sentence =Homeyduino allows you to connect your Arduino projects with Homey.
Original file line number Diff line number Diff line change @@ -135,14 +135,14 @@ bool HomeyClass::trigger(const String& name, bool value)
135
135
return _emit (name.c_str (), CTYPE_BOOL, str, TYPE_TRIGGER);
136
136
}
137
137
138
- bool HomeyClass::setCapabilityValue (const String& name, bool emit)
138
+ /* bool HomeyClass::setCapabilityValue(const String& name, bool emit)
139
139
{
140
140
if (!emit) {
141
141
_setValue(name.c_str(), CTYPE_NULL, "null", TYPE_CAPABILITY);
142
142
return true;
143
143
}
144
144
return _emit(name.c_str(), CTYPE_NULL, "null", TYPE_CAPABILITY);
145
- }
145
+ }*/
146
146
bool HomeyClass::setCapabilityValue (const String& name, const char * value, bool emit)
147
147
{
148
148
if (!emit) {
@@ -682,7 +682,7 @@ void HomeyClass::streamWriteIndex(Stream* s) {
682
682
s->print (' "' );
683
683
684
684
// Version
685
- s->print (" ,\" version\" :\" " HOMEYDUINO_VERSION" \" " );
685
+ s->print (" ,\" version\" :\" " HOMEYDUINO_VERSION " \" " );
686
686
687
687
// Type field
688
688
s->print (" ,\" type\" :\" " );
Original file line number Diff line number Diff line change 17
17
/* -------------- DO NOT EDIT ANYTHING BELOW THIS LINE! -------------- */
18
18
/* (If you do you might break compatibility with the Homeyduino app...) */
19
19
20
- #define HOMEYDUINO_VERSION " 1.0.1 "
20
+ #define HOMEYDUINO_VERSION " 1.0.2 "
21
21
22
22
#define ENDPOINT_MAX_SIZE 17 // 16 + null
23
23
#define ARGUMENT_MAX_SIZE 65 // 64 + null
You can’t perform that action at this time.
0 commit comments