| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- name: Catit Pixi 6-Meal Feeder
- product:
- - id: wmkepdif6qzirl7a
- primary_entity:
- entity: button
- name: Quick Feed
- icon: "mdi:food-drumstick"
- dps:
- - id: 2
- type: boolean
- name: button
- optional: true
- - id: 1
- type: string
- # Meal plan is the following binary blob (1 byte per line), encoded in base64:
- # - Date (1 bit per day Monday -> Sunday, padded with 0 on the MSB). Ex: Monday, Wednesday, Sunday -> 0b01010001
- # - Hour
- # - Minute
- # - Feed #
- # - Enable/Disabled
- name: meal_plan
- optional: true
- secondary_entities:
- - entity: sensor
- icon: "mdi:paw"
- name: Feed report
- category: diagnostic
- dps:
- - id: 15
- name: sensor
- # Encountered values so far:
- # 11: Feeding OK
- # 10/21: Rotating plate is stuck
- type: integer
- optional: true
- - entity: sensor
- name: Battery
- category: diagnostic
- dps:
- - id: 11
- name: sensor
- type: integer
- unit: "%"
- - entity: switch
- name: Voice configuration
- category: config
- dps:
- - id: 18
- name: switch
- type: integer
- mapping:
- - dps_val: 0
- value: false
- - dps_val: 1
- value: true
- - entity: button
- class: restart
- name: Factory reset
- category: config
- dps:
- - id: 9
- type: boolean
- name: button
- optional: true
|