-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Blue Maestro Temperature, waterproof and non-waterproof red version of the temperature only sensor.
- Loading branch information
Showing
5 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
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,12 @@ | ||
# Blue Maestro Tempo Disc Temperature | ||
|
||
|Model Id|[TD1in1](https://github.com/theengs/decoder/blob/development/src/devices/BM1IN1_json.h)| | ||
|-|-| | ||
|Brand|BlueMaestro| | ||
|Model|Tempo Disc| | ||
|Short Description|Red temperature sensor, also available as IP67 waterproof| | ||
|Communication|BLE broadcast| | ||
|Frequency|2.4Ghz| | ||
|Power source|CR2032 (IP67 model non-changeable)| | ||
|Exchanged data|temperature, battery| | ||
|Encrypted|No| |
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 |
---|---|---|
|
@@ -90,6 +90,7 @@ class TheengsDecoder { | |
SHT4X, | ||
SCD4X, | ||
SMARTDRY, | ||
BM1IN1, | ||
BM3IN1, | ||
BM4IN1, | ||
MS_CDP, | ||
|
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
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,32 @@ | ||
const char* _BM1IN1_json = "{\"brand\":\"Blue Maestro\",\"model\":\"Tempo Disc\",\"model_id\":\"TD1in1\",\"condition\":[\"manufacturerdata\",\"index\",4,\"0d\",\"&\",\"manufacturerdata\",\"=\",24,\"index\",0,\"3301\"],\"properties\":{\"tempc\":{\"decoder\":[\"value_from_hex_data\",\"manufacturerdata\",16,4,false,true],\"post_proc\":[\"/\",10]},\"batt\":{\"decoder\":[\"value_from_hex_data\",\"manufacturerdata\",6,2,false,false]}}}"; | ||
/*R""""( | ||
{ | ||
"brand":"Blue Maestro", | ||
"model":"Tempo Disc", | ||
"model_id":"TD1in1", | ||
"condition":["manufacturerdata", "index", 4, "0d", "&", "manufacturerdata", "=", 24, "index", 0, "3301"], | ||
"properties":{ | ||
"tempc":{ | ||
"decoder":["value_from_hex_data", "manufacturerdata", 16, 4, false, true], | ||
"post_proc":["/", 10] | ||
}, | ||
"batt":{ | ||
"decoder":["value_from_hex_data", "manufacturerdata", 6, 2, false, false] | ||
} | ||
} | ||
})"""";*/ | ||
|
||
const char* _BM1IN1_json_props = "{\"properties\":{\"tempc\":{\"unit\":\"°C\",\"name\":\"temperature\"},\"batt\":{\"unit\":\"%\",\"name\":\"battery\"}}}"; | ||
/*R""""( | ||
{ | ||
"properties": { | ||
"tempc": { | ||
"unit": "°C", | ||
"name": "temperature" | ||
}, | ||
"batt": { | ||
"unit": "%", | ||
"name": "battery" | ||
} | ||
} | ||
})"""";*/ |
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