Reputation: 23
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:
Upvotes: 0
Views: 153
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:
Bluetooth connections are secured, yes. But that does not mean we can't peek and see how they work.
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