I am thinking about making the switch from a Vera Lite to SmartThings (when it is avaliable in Sweden…) but was wondering if there is any way to also support 433 MHz devices?
I currently have a RFXtrx433 USB 433.92MHz Transceiver (http://www.rfxcom.com/) connected to my Vera and it makes it possible to use a wide array of cheap and avaliable sensors and switches in addition to Z-Wave. I also have a lot of built-in light switches and dimmers I do not want to replace.
The RFXtrx433 have also been ported to a lot of other smart home-systems and I hoped maybe the SmartThings also could use it? Any other way?
No, sorry. We currently don’t have any plans in progress to add support for that. It might be easy to make a bridge with Arduino or Raspberry Pi, though.
On this topic, I have a fundamental conceptual existential question
I understand z-wave / zigbee bring lot of advantages in an open architecture smarthome open standard. But, price of a smoke detector or any other basic sensors such as :
Smoke detector 433 MHZ = 4 USD , z-wave or zigbee = minimum 29 USD
Door sensor 433 MHZ = 4 USD , z-wave or zigbee = minimum 19 USD
I understant that it is worth inveting in z-wave devices. However, if their functionality is classical and basic such as door sensing/ smoke . What would be driver to invest 5 times the price in z-wave and not use 433 MHZ. For a larage building, budget is easily 5 times as high.
I know you guys are pationate and also very smart, kindly enlighten me on reason to go with z-wave despite high price of its sensor
Z-Wave uses more advanced protocol than simple 433Mhz sensors. In a nutshell, it’s more secure and more robust. Does in justify higher cost? It depends on your specific situation and requirements.
There are many different protocols that use 433 MHz frequency band. Wink only supports two specific protocols - Kidde and Lurton. They are not the same as simple on/off RF switches that Broadlink is meant for.
@ogiewon I am attempting to replicate exactly what you have built out specifically for controlling etekcity sockets via 433mhz. That said, I have pulled your project into platform.io but it is throwing errors about secrets.h missing which makes sense. Would it be possible for you to drop the sensitive values and post that file with the variables so I can compile?
I think you’re using another user’s code, not mine. I never included a secrets.h file in any of my sketches. If you look at my ST_Anything example sketches, you’ll see plenty of examples of what those values should be.
Is this the post you’re getting the source code from by any chance? If so, you may want to ask @perivar for a sanitized copy of secrets.h. Or, just replace all of necessary constants with values.
@ogiewon sorry - I had multiple threads open. I pulled a fork from this thread/post: https://community.smartthings.com/t/st-anything-433mhz-rf-devices-arduino-thingshield/19084/31?u=lehighkid It appears there is a secrets.h file that stores the variables for the connection details for the network and hub. I was attempting to keep the values separate instead of updating the main.ino file but not sure of the data types for each variable - for instance:
WIFI_SSID = ;
WIFI_PASSWORD = ;
DEVICE_IP_ADDRESS = ;
ROUTER_GATEWAY = ;
LAN_SUBNET = ;
DNS_SERVER = ;
SERVER_PORT = ;
HUB_IP_ADDRESS;
HUB_PORT = ;
I’ll look through the other examples… Apologies for the confusion.