-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dnt radiator thermostat (dnt-lw-eTRV) (#762)
* added new vendor dnt Innovation GmbH and first device dnt-lw-ats * added dnt-lw-eTRV * corrected error with file extension on image --------- Co-authored-by: Jaime Trinidad <[email protected]>
- Loading branch information
1 parent
7af7bf2
commit a1a8f5a
Showing
10 changed files
with
1,003 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,6 +103,6 @@ msrp: | |
|
||
# Photos | ||
photos: | ||
main: dnt-lw-ats.png | ||
main: dnt-lw-ats.jpg | ||
other: | ||
- dnt-lw-ats-top-view.jpg |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Uplink decoder decodes binary data uplink into a JSON object (optional) | ||
# For documentation on writing encoders and decoders, see: https://www.thethingsindustries.com/docs/integrations/payload-formatters/javascript/ | ||
uplinkDecoder: | ||
fileName: dnt-lw-etrv.js | ||
# Examples (optional) | ||
examples: | ||
- description: Status Uplink | ||
input: | ||
fPort: 10 | ||
bytes: [0x04, 0xF4, 0xB6, 0x64, 0x64, 0x00, 0x04] | ||
output: | ||
data: | ||
battery_cover_locked: | ||
unit: 'bool' | ||
value: true | ||
battery_voltage: | ||
unit: 'mV' | ||
value: '3320' | ||
heating_control: | ||
mode: | ||
active_mode: | ||
unit: 'string' | ||
value: 'Manu Temp' | ||
holiday: | ||
is_pending: | ||
unit: 'bool' | ||
value: false | ||
window_open_detection: | ||
is_open: | ||
unit: 'bool' | ||
value: false | ||
room_temperature: | ||
unit: '°C' | ||
value: '20.0' | ||
set_point_temperature: | ||
unit: '°C' | ||
value: '20.0' | ||
valve_position: | ||
unit: '%' | ||
value: '0.0' | ||
errors: [] | ||
warnings: [] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.