82 lines
2.7 KiB
C++
82 lines
2.7 KiB
C++
/**
|
|
* Demo for RF remote switch receiver.
|
|
* For details, see NewRemoteReceiver.h!
|
|
*
|
|
* Connect the transmitter to digital pin 6.
|
|
*
|
|
* This sketch demonstrates the use of the NewRemoteTransmitter class.
|
|
*
|
|
* When run, this sketch switches some pre-defined devices on and off in a loop.
|
|
*
|
|
* NOTE: the actual receivers have the address and group numbers in this example
|
|
* are only for demonstration! If you want to duplicate an existing remote, please
|
|
* try the "retransmitter"-example instead.
|
|
*
|
|
* To use this actual example, you'd need to "learn" the used code in the receivers
|
|
* This sketch is unsuited for that.
|
|
*
|
|
*
|
|
* 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 <NewRemoteTransmitter.h>
|
|
|
|
int pin; // int for Transmit pin.
|
|
|
|
void setup() {
|
|
|
|
#ifdef ESP32
|
|
pin = 2; // for esp32! Transmit on GPIO pin 2.
|
|
#elif ESP8266
|
|
pin = 5; // for esp8266! Transmit on pin 5 = D1
|
|
#else
|
|
pin = 6; // for Arduino! Transmit on pin 6.
|
|
#endif
|
|
|
|
//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.SetTx(); // cc1101 set Transmit on
|
|
}
|
|
|
|
void loop() {
|
|
|
|
// Create a transmitter on address 123, using digital pin 6 to transmit,
|
|
// with a period duration of 260ms (default), repeating the transmitted
|
|
// code 2^3=8 times.
|
|
NewRemoteTransmitter transmitter(123, pin, 260, 3);
|
|
|
|
// Switch unit 2 off
|
|
transmitter.sendUnit(2, false);
|
|
|
|
// Switch all devices in the group off
|
|
transmitter.sendGroup(false);
|
|
|
|
// Set unit 1 to dim-level 3 (range 0-15)
|
|
transmitter.sendDim(1, 3);
|
|
|
|
// Wait 5 seconds
|
|
delay(5000);
|
|
|
|
|
|
// Switch unit 2 on
|
|
transmitter.sendUnit(2, true);
|
|
|
|
// Switch all devices in the group on
|
|
transmitter.sendGroup(true);
|
|
|
|
// Set unit 1 to dim-level 15, full brightness.
|
|
transmitter.sendDim(1, 15);
|
|
|
|
// Wait 5 seconds
|
|
delay(5000);
|
|
}
|