rc-switch icon indicating copy to clipboard operation
rc-switch copied to clipboard

Arduino lib to operate 433/315Mhz devices like power outlet sockets.

Results 100 rc-switch issues
Sort by recently updated
recently updated
newest added

How can I read and send data for the garage gate using this library? ![screenshot](https://cloud.githubusercontent.com/assets/22826842/25066461/aee9aa10-222e-11e7-9d72-d9fa2cb1f93d.png) In the screenshot the code is 3557

I'm trying to get the ReceiveDemo_Advanced example to work with Platform.IO and VS Code. I'm able to get it to work with the Arduino IDE, but I prefer VS Code....

It’s sames that void RCSwitch::disableReceive() { doesn’t work .. I’m trying to read from 433 and 315 together, and I want to disable each other before I enable the other....

Hello, I have one concern when analyzing source code, In function handling the reception side. Specifically, in source code RCSwitch.cpp - function receiveProtocol() line 639: ``` * ______________ * |...

Example "senddemo" does not tell how to use send - what are the values. Is it send(decimal, bits)? senddemo ``` /* Send decimal code */ mySwitch.send(5393, 24); ```

my arduino code: ```#include RCSwitch mySwitch = RCSwitch(); void setup() { Serial.begin(9600); mySwitch.enableReceive(0); } void loop() { if (mySwitch.available()) { int value = mySwitch.getReceivedValue(); if (value == 0) { Serial.println("Unbekannter...

I recently bought 433 MHz Superheterodyne receiver ( WL101-341) and I'm having problem receving signal from my 433 MHz remote. When I test my script everything is fine if the...

hello, I'm starting now with rf control analysis and I have some questions could someone help me? I followed the tutorial to add a new protocol but it didn't work...

Which pin do I need to use to let it work with an arduino pro mini atmega 328P 5V?

Would it be possible for you to explain how to generate our own protocols using data received from Universal Radio Hacker or from a logic analyzer?