Robert Heß
Robert Heß

Reputation: 23

How to control shutter switches via bluetooth

I have electric shutter switches (schneider electric, Model: DT1_IT10) that can be controled with an android app via bluetooth (You connect them by long-pressing on the shutter switch and then add them on the phone). I thought that when the app can control them, i can control them, too. So i want to write a remote control in GO.

But i dont have any experience and just need a starting point. So the questions are:

  1. Is this even possible? Maybe the Bluetooth connection is secured?
  2. How and where do i get informations about how to connect to such a device? I couldnt find any information on the manufacturer page.

Upvotes: 0

Views: 153

Answers (1)

Gustavo Kawamoto
Gustavo Kawamoto

Reputation: 3067

Yes, this is possible. The magics of free software (as in freedom, not beer) enables us to do whatever we want with the things we own. Protect FOSS, protect our freedom.

Political agenda aside, to answer your questions:

  1. Bluetooth connections are secured, yes. But that does not mean we can't peek and see how they work.

  2. I would start by sniffing the connections (see this and this) and dumping whatever traffic is going through. While doing that, I'd check some libraries for bluetooth in Go (this and this might give you a good idea on that).

It'll not be easy (I've done a few things like that in the past) but if you're into that kind of thing, it'll definitely be fun :)

Upvotes: 0

Related Questions