Logo
Blitzwolf UV Pet Water Fountain (BW-SPF1)
Blitzwolf UV Pet Water Fountain

Available from:
Aliexpress.com
Banggood.com
Amazon.com



Manufacturer:
Blitzwolf.com

Install method:
USB to Serial

GPIO #Component
GPIO00 None
GPIO01 None
GPIO02 None
GPIO03 None
GPIO04 Relay 1
GPIO05 PWM 1
GPIO09 None
GPIO10 None
GPIO12 None
GPIO13 Button 1
GPIO14 Switch 1
GPIO15 None
GPIO16 LedLinki
GPIO17 None
Configuration
{"NAME":"BW-SPF1","GPIO":[0,0,0,0,224,416,0,0,0,32,160,0,576,0],"FLAG":0,"BASE":18}

Detach the Switch from the Relays and use Switchmode 1 with: Backlog SetOption114 1; SwitchMode 1

In Home Assistant I created a automation that switches off the Water Pump if it reaches the water limit:

alias: Turn Off when no Water
description: ''
trigger:
  - type: turned_off
    platform: device
    device_id: 1d46636bf8dcb966ae537d5bdb967b04
    entity_id: binary_sensor.switch1
    domain: binary_sensor
condition:
  - condition: device
    type: is_on
    device_id: 1d46636bf8dcb966ae537d5bdb967b04
    entity_id: switch.water_fountain
    domain: switch
action:
  - type: turn_off
    device_id: 1d46636bf8dcb966ae537d5bdb967b04
    entity_id: switch.water_fountain
    domain: switch
mode: single

The UV light on the original firmware turns off automatically after 5 minutes. I did a automation in Home Assistant to keep it that way

alias: Turn Off UV Light after 5mins
description: ''
trigger:
  - platform: device
    type: turned_on
    device_id: 1d46636bf8dcb966ae537d5bdb967b04
    entity_id: light.uv_light
    domain: light
    for:
      hours: 0
      minutes: 5
      seconds: 0
      milliseconds: 0
condition: []
action:
  - type: turn_off
    device_id: 1d46636bf8dcb966ae537d5bdb967b04
    entity_id: light.uv_light
    domain: light
mode: single