| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- name: Weather Station
- products:
- - id: q9opgtca8ymbxpqn
- name: EM3378
- primary_entity:
- entity: sensor
- name: Indoor temperature
- class: temperature
- dps:
- - id: 101
- type: integer
- name: sensor
- class: measurement
- mapping:
- - scale: 10
- - id: 112
- type: boolean
- name: unit
- mapping:
- - dps_val: true
- value: F
- - dps_val: false
- value: C
- - id: 117
- name: fault
- type: bitfield
- optional: true
- # we need the full range of values to expose this as a light control
- - id: 118
- name: backlight_brightness
- type: string
- - id: 121
- name: backlight_leading_time
- type: integer
- # below is probably related to the built in USB charger, but is encoded
- - id: 122
- name: output_power
- type: hex
- secondary_entities:
- - entity: sensor
- name: Indoor humidity
- class: humidity
- dps:
- - id: 102
- type: integer
- name: sensor
- unit: "%"
- class: measurement
- - entity: sensor
- name: Remote temperature 1
- class: temperature
- category: diagnostic
- dps:
- - id: 103
- type: integer
- name: sensor
- class: measurement
- mapping:
- - scale: 10
- - id: 112
- type: boolean
- name: unit
- mapping:
- - dps_val: false
- value: C
- - dps_val: true
- value: F
- - entity: sensor
- name: Remote humidity 1
- class: humidity
- category: diagnostic
- dps:
- - id: 104
- type: integer
- name: sensor
- unit: "%"
- class: measurement
- - entity: sensor
- name: Remote temperature 2
- class: temperature
- category: diagnostic
- dps:
- - id: 106
- type: integer
- name: sensor
- class: measurement
- optional: true
- mapping:
- - scale: 10
- - id: 112
- type: boolean
- name: unit
- mapping:
- - dps_val: false
- value: C
- - dps_val: true
- value: F
- - entity: sensor
- name: Remote humidity 2
- class: humidity
- category: diagnostic
- dps:
- - id: 107
- type: integer
- name: sensor
- unit: "%"
- class: measurement
- optional: true
- - entity: sensor
- name: Remote temperature 3
- class: temperature
- category: diagnostic
- dps:
- - id: 108
- type: integer
- name: sensor
- class: measurement
- optional: true
- mapping:
- - scale: 10
- - id: 112
- type: boolean
- name: unit
- mapping:
- - dps_val: false
- value: C
- - dps_val: true
- value: F
- - entity: sensor
- name: Remote humidity 3
- class: humidity
- category: diagnostic
- dps:
- - id: 109
- type: integer
- name: sensor
- unit: "%"
- class: measurement
- optional: true
- - entity: sensor
- class: atmospheric_pressure
- category: diagnostic
- dps:
- - id: 110
- type: integer
- name: sensor
- class: measurement
- - id: 111
- type: string
- name: unit
- - entity: select
- name: Atmospheric pressure unit
- icon: "mdi:gauge"
- category: config
- dps:
- - id: 111
- type: string
- name: option
- mapping:
- - dps_val: mmHg
- value: mm of mercury
- - dps_val: hPa
- value: millibars
- - dps_val: inHg
- value: inches of mercury
- - entity: select
- translation_key: temperature_unit
- category: config
- dps:
- - id: 112
- type: boolean
- name: option
- mapping:
- - dps_val: false
- value: celsius
- - dps_val: true
- value: fahrenheit
- - entity: binary_sensor
- class: problem
- category: diagnostic
- dps:
- - id: 117
- type: boolean
- name: sensor
- optional: true
- persist: false
- mapping:
- - dps_val: null
- value: false
- - dps_val: 0
- value: false
- - value: true
- - entity: select
- name: Time mode
- icon: "mdi:clock-edit"
- category: config
- dps:
- - id: 119
- type: boolean
- name: option
- mapping:
- - dps_val: false
- value: 24h
- - dps_val: true
- value: 12h
- - entity: switch
- name: Date
- category: config
- dps:
- - id: 120
- type: boolean
- name: switch
|