JMTS
JMTS
Yes, I have the same problem.
I have solved it by connecting a 100 microF capacitor and a 10K resistor in series with the CC1101 power supply, to delay the CC1101 power supply and when I...
I keep doing tests, when I have something clear I will post it And sorry for my English, I use a translator
Solution in esp32: `#define aliCC1101 25 //CC1101 power void configuracionCC1101(){ pinMode(aliCC1101, OUTPUT); digitalWrite(aliCC1101, LOW); delay(100); digitalWrite(aliCC1101, HIGH); ELECHOUSE_cc1101.Init(); // Debe configurarse para inicializar el cc1101 ELECHOUSE_cc1101.setPA(10); // configure TxPower. Son...
Other solution: in void setup(){ // load TFT configuration first // then load the CC1101 configuration } This is how everything also works in the same SPI
To send and receive I use the RCSwitch library, it can be downloaded from the Arduino library manager