Switchbot Curtain

I notice a delay between taping the open/close of the curtain and effectively opening/closing. Any of you guys notices this? When use the SwitchBot Android app, it’s instantaneous.

The delay could be caused by interference and or the distance between the curtain bot and HA.

Hello Community! I have a question that popped up after reading all the posts. I bought the Switchbot curtains but without a hub (long story) and I was thinking if its possible to get them “online” without it. Is it possible to convert a Raspberry pi into a Hub? To be honest i don’t have Home assistant but i would like to connect it to my google home. I looked everywhere and here is the only platform where you talk about this curtains. Thanks in advance and thank you for all the interesting information shared here!

Hi. Welcome.

Is it possible to convert a Raspberry pi into a Hub?

It is possible and that is what I have done using this node switchbot from github. I am controlling my bots and curtains I have setup on another rpi device. I than use HA (installed on a different rpi) to control them all via automations. I don’t have a switchbot hub either.

If you have the nabu casa subscription you can enable these curtain entities without needing a switchbot hub.

How do you link HA to node-switchbot?

I’m struggling with BT range on my HA rpi. But have pi 0s in each room so want to do something similar to you. HA pi 4 > pi 0 > curtain.

Hi.

How do you link HA to node-switchbot?

You link the bot by creating switch command line after you have sucessfully setup the node switchbot on your rpi 0.

switch:
   jcom_tv_box:
     friendly_name: Jcom Tv Box
     command_on: 'curl -k "http://192.168.1.30:5004/?id=4ff839dc40df&cmd=press"'
     command_off: 'curl -k "http://192.168.1.30:5004/?id=4ff839dc40df&cmd=press"'

   computer_room_curtains:
     friendly_name: Computer Room Curtains
     command_on: 'curl -k "http://192.168.1.30:5004/?id=5cc6df9448cb&cmd=open"'
     command_off: 'curl -k "http://192.168.1.30:5004/?id=5cc6df9448cb&cmd=close"'

Disclaimer: I am not a programer. I came up with this code to control my bots, curtains and monitor the batteries via mqtt after tons of trial and errors since my HA sever is out of bluetooth range (on the border). You will need to change the mqtt ip, username, password and possibly the mqtt topic path.

Follow the installation guide. Use this switchbots.js script to control your bots with the following cmds below.

Install the script to a directory on your rpi.
Cd to the script and run sudo node switchbots.js
In a browser, use one of the cmds below for the bot you have. Make sure to change the ip and mac address. If all is successful, your bot should move.

The command to run the switchbot devices are as follows.

Switchbot Meter:
http://192.168.1.30:5004/?id=7e9341ccf8ae&cmd=meter

Switchbot Bot:
http://192.168.1.30:5004/?id=7e9341ccf8ae&cmd=press

Switchbot Curtain:
http://192.168.1.30:5004/?id=5cc6df9448cb&cmd=open [fully open the curtain]
http://192.168.1.30:5004/?id=5cc6df9448cb&cmd=close [fully close the curtain]
http://192.168.1.30:5004/?id=5cc6df9448cb&cmd=pause [pause/stop the curtain]
http://192.168.1.30:5004/?id=2eb3c5c10eff&cmd=pos&set=50 [open the curtain to certain position. 0= fully open. 100= fully close]

Update: Additional Info

To have the script startup on every reboot.

There is an issue where the device would not connect. Running the url the second time does work, but it is not feasible if you are relaying on an automation. I’ve added a check error to write a msg to mqtt every time a bot runs.

1 Like

Is this true? This is a huge security hole, no? I’m looking at these for my house but this is a non-starter for me.

you can add a password to switchbot switches. you can’t (yet?) add password to switchbot curtain.
but range is pretty small and you’re swimming in bluetooth MAC addresses. while it feels like a problem - you should be more concerned that a hacker is sitting in your garden scanning for switchbot devices. i guess it depends on your property location and construction, but my switchbot range fails well inside the fence line…

thank you for this! remote triggering makes this a viable solution for me. im sure ill find other uses the additional PI too

Thanks for this.

Any idea how to run swtichbots.js on boot? i’ve google and tried a couple of solutions without success. im running the official Raspberry Pi OS as user pi

Also, im getting this reply error intermittently - almost every other time - from the node js server.

Error: Failed to discover services and characteristics: DISCONNECTED

i can solve it for the curtain, but running the URL shell_command multiple times. but can’t use that workaround for switchbot switches that toggle devices… any clues?

To have the script start on boot:
Create a file call switchbot.service at /etc/systemd/system

add these text to the switchbot.service file. Make sure you change the path to the switchbot.js file base on your setup.

# Switchbot
[Unit]
Description=switchbot.js - Switchbots
After=network.target

[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/node /home/pi/bin/mqtt/switchbot/switchbot.js
Restart=on-failure

[Install]
WantedBy=multi-user.target

Run this cmd to have the script start on every boot.

sudo systemctl enable switchbot.service

i can solve it for the curtain, but running the URL shell_command multiple times.

I am getting this as well. The author has mentioned this and am aware of it. Though there is no fix. I think it is a limitation of the BT on the PI?. A suggestion was to create a longer scan time, but I don’t think this will solve it.

Interference may be another possibility. I run Monitor on a different pi and I notice that pi picks up quite a few BT devices at different intervals. These BT devices are not mine.

How far is the bot to the pi?

thank you for that. occasional linux user here. sometimes i run myself in circles. node js service running fine on boot now

i’ve got 1x curtain and 2x switches. one switch is pretty close and seems to suffer about the same, i cant see a pattern. when it fails, it fails very quickly.
it seems pretty reliable on second go… in the HA script, i might try running a “dummy” command first to wake it up…something like
http://10.0.50.145:5004/?id=c398d5769d42&cmd=battery
then
http://10.0.50.145:5004/?id=c398d5769d42&cmd=press

i’ve got 1x curtain and 2x switches. one switch is pretty close and seems to suffer about the same, i cant see a pattern. when it fails, it fails very quickly.

I have one switch that is literally right next to the pi with a wooden panel between them. It triggers always on cmd. I have another switch that is in the same room as the pi, but separated by a wall. This one does not trigger all them time on cmd, however.

Overall, this method is better for me then using the switchbot integration as the HA server is quite far. Moreover, this method can track battery life.

i might try running a “dummy” command first to wake it up…something like

This sounds like a good workaround. For my curtain bots, I have 2 sets of the curtain bots ( 4 bots total)to run 2 curtains in the Livingroom. I have an automation to open and close the curtains at sunrise and sunset. To prevent both sets of bots to trigger at the same time, I’ve added a one second delay so both cmds do not fire at the same time.

similar experience.

NOTE; the additional dummy commands don’t help. if anything it make the problem worse.

i think it’s a combination of things. i think pi bluetooth signal is weak which contributes to the problem - particularly in a noisy 2.4Ghz environment. the Curtain seems a lot stronger signal than the switches.

the Home Assistant integration is more reliable than this relay. i have seen it fail, but i think it fails gracefully and retries and gets the job done most times. i see retrys in the HA logs.

This relay implementation - if it fails first time it seems to hang for longer and contribute to future failures.
I’ve repositioned my relay Pi. im still getting maybe 10% failures to curtain and 30% failures to switches. but it’s almost 100% success on 2nd try after failure. so the whole thing is currently bearable. i hope the devs update node-switchbot relay to a more reliable retry? maybe there is a &retryonfailure swtich. i dont have to skills to contribute, but i’ll head over to github and contribute what i can.

as a workaround - i might try and make my HA shell_commands read the successful "OK!"and try again on failure or at least show an error to the user.
duceduc - does your HA implementation do that? im using a CURL command to fire the URL. ill have a play.

cheers

1 Like

as a workaround - i might try and make my HA shell_commands read the successful "OK!"and try again on failure or at least show an error to the user.

I have updated the script.js to have a ok/error check via mqtt. Every time you call the bot, it will either have ok or error message output to mqtt.

From there you can create a sensor and use it to re run the bot if it outputs error. You will need to think how you can implement this check for all your bots. I was testing it on the bot device using script. Seems to work. The below script template will run 10 times or until until sensor.switchbot_status state is ok.

script.yaml

  switchbot_bot_enable:
    sequence:
    - repeat:
        until:
        - condition: or
          conditions:
          - condition: template
            value_template: "{{ is_state('sensor.switchbot_status', 'ok') }}"
          - condition: template
            value_template: "{{ repeat.index % 10 == 0 }}"
        sequence:
        - service: switch.turn_{{ mode }}
          data:
            entity_id: '{{ bot }}'

automation.yaml

- alias: 'turn on 24hr fan'
  trigger:
    platform: time
    at: '05:30:00'
  condition:
  - condition: template # Not on Vacation
    value_template: "{{ not is_state('input_select.home_mode', 'Vacation') }}"
  - condition: template # Someone is home
    value_template: "{{ not is_state('input_select.home_mode', 'Away') }}"
  action:
    - service: script.switchbot_bot_enable
      data:
        mode: 'on'
        bot: switch.24hr_fan_bot

- alias: 'turn off 24hr fan'
  trigger:
    platform: time
    at: '23:00:00'
  condition:
  - condition: template # Not on Vacation
    value_template: "{{ not is_state('input_select.home_mode', 'Vacation') }}"
  - condition: template # Someone is home
    value_template: "{{ not is_state('input_select.home_mode', 'Away') }}"
  action:
    - service: script.switchbot_bot_enable
      data:
        mode: 'off'
        bot: switch.24hr_fan_bot

sensor.yaml

  - platform: mqtt
    name: 'Switchbot Status'
    state_topic: 'switchbot/status/msg'
    value_template: '{{ value }}'

Guys, I’m planning to buy Switchbot Curtain but I have some doubts.
I have NAS with Docker HA installed 2nd floor and curtains which I wish to control on 1st floor. Im pretty sure of that Bluetooth range will not cover that place.

Is it possible to extend a range of bluetooth or mage Rpi Zero as some kind of extender or bridge?
Upper you wrote about switchbots.js as I understand I have to install it on Rpi0? This connect via MQTT with my Mosquito Broker on NAS?

So the communication looks like:
SwitchBot -- (BT) --> Raspberry Pi -- (MQTT - WiFi) --> NAS with MQTT

Did I understand correctly?

Hi.
That looks right. Though mqtt is optional if you don’t care about knowing the data of the bot. My pi 3 is connected via wire, but I am sure wifi will work as well. Just make sure the pi zero has good wifi coverage.

You have the pi zero W? Let us know how it goes if you are going to go forward with it. I am thinking about switching over to a rpi zero w myself.

Is it possible to extend a range of bluetooth or mage Rpi Zero as some kind of extender or bridge?

I am not sure if that is possible or if it is, it maybe not worth the trouble not knowing how far it can be extended.

Is anyone integrate Switchbot Curtain via BT-MQTT-GATEWAY (https://github.com/zewelor/bt-mqtt-gateway)?
Yesterday with success I installed this on my old RPi0 and connected to Xiaomi Thermostat.
In documentation it support Switchbot but I didn’t found information if it support Curtain.

Hi Everyone,

My set up is HA installed via docker on a NAS in the basement and the curtains are in the bedroom two floors up. I do have the Hub in the bedroom.

I recently purchased the switchbot curtain and it works very well. I’m also starting out with HA for the 4th time. I integrated the curtain via mac and it does show up in HA. However, none of the buttons do anything. I’m assuming that is because it’s trying to communicate via BT and it can’t reach it.

I’ve read through this entire thread and I’m not more confused than I started. I’ve tried using the mac of the curtain, hub and BLE but only the mac for the curtains show up as pressable buttons (which again don’t do anythign when clicked).

Is there a way to integrate the HUB to control the curtains in HA?

TIA

The curtain integration provided by the user above works by communicating with HA via BT and not the Switchbot Hub. Since your HA is install 3 floors down, it is out of range. Does your NAS have BT?

As far as I know, there is no HA Integration to talk to the hub. However, there is a switchbot api method you can try which needs the hub to communicate. Request a token via the mobile app feedback. I don’t have a hub to test. But an example of a way to trigger via HA is by curl.

curl "https://api.switch-bot.com/v1.0/devices" -H "authorization: YOUR_TOKEN_KEY"

The downfall to the api method is that, if you lose internet connection, you will not be able to trigger your devices. An alternative is to move your HA closer to the curtain device or install another server (ex. rpi) and try my method.

There is another method I have found recently that uses ESP32 to connect to the device. It is setup for 2 bot devices and the author claims it should work for the curtain devices as well, but not tested.

1 Like