#include <OzIDManager.h> #include <Oz433MhzTransceiver.h> OzIDManager* manager; Oz433MhzTransceiver* oz433MhzTransceiver; uint8_t receiverInterrupt = 1; // default value: INT 1 on D3 uint8_t transmitterPin = 2; // default value: D2 void setup() { Serial.begin(115200); manager = new OzIDManager; manager->_sendACK = true; manager->_checksum = true; OzCommunication::setIDManager(manager); oz433MhzTransceiver = new Oz433MhzTransceiver(receiverInterrupt, transmitterPin); int x=1; manager->sendLinkSetup(); manager->PrintWelcomeLine(oz433MhzTransceiver, x++, "MyRF433"); } void loop() { OzCommunication::communicate(); oz433MhzTransceiver->ownLoop(); }
More information
- Information about 433 MHz modules
- How to setup a rf 433 mhz on arduino mega
- How to setup a rf 433 mhz on arduino nano
- How to setup a rf 433 mhz on arduino uno
- How to setup a rf 433 mhz on Ozeki matrix
- How to setup a rf 433 mhz on Raspberry Pi
- RF 433 mhz protocol for arduino
- Arduino RF 433 MHz Chat Control
- RF433 Desc
- RF433 Transceiver Arduino