Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
KC868A-4 RF433MHz decoding.
#7
(05-10-2024, 03:21 AM)admin Wrote: you need use two board,  one for send , another for receive.
maybe your code send RF and receive RF signal can't at the same time.

As do you can see on the oscilloscope picture trasmitted signal and received signal are in the same fase. Anyway  with the code below (I enabled only the receiver) pressing one button to the remote control,  On U8 Pin 4 (strigth connected  with IO19)  We can see received signal very cleaned (see picture in attacment.) But there is not output to the serial monitor. 
Code:
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
  Serial.begin(9600);
  mySwitch.enableReceive(digitalPinToInterrupt(19));  //IO19
  Serial.print("begin test");
}
void loop() {
  if (mySwitch.available()) {
  
    Serial.print("Received ");
    Serial.print( mySwitch.getReceivedValue() );
    Serial.print(" / ");
    Serial.print( mySwitch.getReceivedBitlength() );
    Serial.print("bit ");
    Serial.print("Protocol: ");
    Serial.println( mySwitch.getReceivedProtocol() );
    mySwitch.resetAvailable();
  }
}


Attached Files Image(s)
   
Reply


Messages In This Thread
RE: KC868A-4 RF433MHz decoding. - by admin - 05-07-2024, 12:04 AM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-07-2024, 12:12 PM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-10-2024, 03:21 AM
RE: KC868A-4 RF433MHz decoding. - by franco.demei@gmail.com - 05-10-2024, 10:25 AM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-10-2024, 10:43 AM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-10-2024, 10:56 PM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-13-2024, 11:42 AM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-14-2024, 01:10 AM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-14-2024, 10:35 PM
RE: KC868A-4 RF433MHz decoding. - by admin - 05-15-2024, 11:43 AM

Forum Jump:


Users browsing this thread:
2 Guest(s)