Skip to content

Commit

Permalink
Add default values to descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
aivus committed Jun 10, 2024
1 parent c11a6c0 commit 491f88e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@
"en": "Polling interval"
},
"hint": {
"en": "Interval between polling status from HVAC"
"en": "Interval between polling status from HVAC. Default value 3500"
}
},
{
Expand All @@ -1244,18 +1244,18 @@
"en": "Polling timeout"
},
"hint": {
"en": "Timeout for the response from the HVAC during polling process"
"en": "Timeout for the response from the HVAC during polling process. Default value 3000"
}
},
{
"id": "enable_debug",
"type": "checkbox",
"value": false,
"label": {
"en": "Debug"
"en": "Verbose logging"
},
"hint": {
"en": "Enable debug in case the application is crashing. It allows developer to investigate the issue"
"en": "Enable verbose logging in case the application is crashing. It allows developer to investigate the issue"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion drivers/gree_cooper_hunter_hvac/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class GreeHVACDevice extends Homey.Device {
return;
}

this.log('[find devices]', 'Connecting to device with mac:', hvac.message.mac);
this.log('[find devices]', 'Connecting to device with mac:', hvac.message.mac, 'using next settings:', settings);

this._stopLookingForDevice();

Expand Down

0 comments on commit 491f88e

Please sign in to comment.