Skip to content

A 433Mhz transmission/reception library for Arduino and Raspberry Pi

Notifications You must be signed in to change notification settings

gradew/gradewrf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gradewrf

Transmission

rf.setTransmit(17); // !!!! ON A RASPBERRY, USE BROADCOM CHIP NUMBER !!!!
rf.transmitData(0x01020304);

Reception

rf.setReceive(0); // !!!! MUST USE INTERRUPT NUMBER !!!!
// ... then, in a loop...
if(rf.isDataAvailable()){
  unsigned long val=rf.getData32();
  rf.resetData(); // get ready for the next transmission
}

About

A 433Mhz transmission/reception library for Arduino and Raspberry Pi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published