Skip to content

Commit

Permalink
Added WB-MSW-ZIGBEE v.4 device (#2146)
Browse files Browse the repository at this point in the history
  • Loading branch information
aadegtyarev authored Jul 25, 2023
1 parent 59d321d commit 00f5f13
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions docs/devices/WB-MSW-ZIGBEE_v.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
<!-- Notes BEGIN -->
## Notes

### Description
Wiren Board WB-MSW v.4 — hybrid digital sensor of temperature, humidity, illumination, noise, CO2 and VOC level. It is equipped with the IR blaster (and the receiver for learning). Designed for climate control in residential and office premises.

### Configuring IR
The sensor contains 80 banks for storing IR commands. Training takes place through the built-in IR receiver.

By publishing to `zigbee2mqtt/FRIENDLY_NAME/set` various device attributes can be configured.

#### Start learn to ROM
Request:

```json
{
"learn_start": {
"rom":0
}
}
```
* `rom`: Memory cell number (from 0 to 79)

#### Stop learn to ROM
Request:
```json
{
"learn_stop": {
"rom":0
}
}
```
* `rom`: Memory cell number (from 0 to 79)

#### Play from ROM
Request:
```json
{
"play_store": {
"rom":0
}
}
```
* `rom`: Memory cell number (from 0 to 79)

#### Clear all ROM's
Request:

```json
{
"clear_store": {}
}
```

#### Start learn to RAM
Request:

```json
{
"learn_start": {
"rom":0
}
}
```

#### Stop learn to RAM
Request:
```json
{
"learn_ram_stop": {}
}
```

#### Play from RAM
Request:
```json
{
"play_ram": {}
}
```
<!-- Notes END -->
Binary file added public/images/devices/WB-MSW-ZIGBEE-v.4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 00f5f13

Please sign in to comment.