81 lines
2.7 KiB
C++
81 lines
2.7 KiB
C++
/*
|
|
* Demo for RF remote switch receiver.
|
|
* For details, see NewRemoteReceiver.h!
|
|
*
|
|
*
|
|
* When run, this sketch waits for a valid code from a new-style the receiver,
|
|
* decodes it, and retransmits it after 5 seconds.
|
|
*
|
|
* Notes: Arduino only!!!
|
|
*
|
|
* https://github.com/1technophile/NewRemoteSwitch
|
|
* https://github.com/LSatan/SmartRC-CC1101-Driver-Lib
|
|
* ----------------------------------------------------------
|
|
* Mod by Little Satan. Have Fun!
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#include <ELECHOUSE_CC1101_SRC_DRV.h>
|
|
#include <NewRemoteReceiver.h>
|
|
#include <NewRemoteTransmitter.h>
|
|
|
|
void setup() {
|
|
|
|
//CC1101 Settings: (Settings with "//" are optional!)
|
|
ELECHOUSE_cc1101.Init(); // must be set to initialize the cc1101!
|
|
//ELECHOUSE_cc1101.setRxBW(812.50); // Set the Receive Bandwidth in kHz. Value from 58.03 to 812.50. Default is 812.50 kHz.
|
|
//ELECHOUSE_cc1101.setPA(10); // set TxPower. The following settings are possible depending on the frequency band. (-30 -20 -15 -10 -6 0 5 7 10 11 12) Default is max!
|
|
ELECHOUSE_cc1101.setMHZ(433.92); // Here you can set your basic frequency. The lib calculates the frequency automatically (default = 433.92).The cc1101 can: 300-348 MHZ, 387-464MHZ and 779-928MHZ. Read More info from datasheet.
|
|
|
|
ELECHOUSE_cc1101.SetRx(); // set Receive on
|
|
|
|
// See example ShowReceivedCode for info on this
|
|
NewRemoteReceiver::init(0, 2, retransmitter);
|
|
}
|
|
|
|
void loop() {
|
|
}
|
|
|
|
void retransmitter(NewRemoteCode receivedCode) {
|
|
// Disable the receiver; otherwise it might pick up the retransmit as well.
|
|
NewRemoteReceiver::disable();
|
|
|
|
// Need interrupts for delay()
|
|
interrupts();
|
|
|
|
// Wait 5 seconds before sending.
|
|
delay(5000);
|
|
|
|
// Create a new transmitter with the received address and period, use digital pin as output pin
|
|
|
|
ELECHOUSE_cc1101.SetTx(); // set Transmit on
|
|
NewRemoteTransmitter transmitter(receivedCode.address, 6, receivedCode.period);
|
|
|
|
if (receivedCode.switchType == NewRemoteCode::dim ||
|
|
(receivedCode.switchType == NewRemoteCode::on && receivedCode.dimLevelPresent)) {
|
|
// Dimmer signal received
|
|
|
|
if (receivedCode.groupBit) {
|
|
transmitter.sendGroupDim(receivedCode.dimLevel);
|
|
}
|
|
else {
|
|
transmitter.sendDim(receivedCode.unit, receivedCode.dimLevel);
|
|
}
|
|
}
|
|
else {
|
|
// On/Off signal received
|
|
bool isOn = receivedCode.switchType == NewRemoteCode::on;
|
|
|
|
if (receivedCode.groupBit) {
|
|
// Send to the group
|
|
transmitter.sendGroup(isOn);
|
|
}
|
|
else {
|
|
// Send to a single unit
|
|
transmitter.sendUnit(receivedCode.unit, isOn);
|
|
}
|
|
}
|
|
ELECHOUSE_cc1101.SetRx(); // set Receive on
|
|
NewRemoteReceiver::enable();
|
|
}
|