I have the following components:
I got a communication flow transmit/receive working between two Wemos D1 and like to outsource the transmitting part now to a ATtiny85. I used the same code as for the Wemos:
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
pinMode(1, OUTPUT);
mySwitch.enableTransmit(2);
}
void loop() {
mySwitch.send("000110110001010100010001");
digitalWrite(1, HIGH);
delay(250);
digitalWrite(1, LOW);
delay(250);
}
But the serial monitor for the Wemos does not receive any communication. I went so far that I built up the communication between the two Wemos again and connected only the data pin of the transmitter to the ATtiny85 in order to exclude any voltage problems (ATtiny gets 5V, transmitter likes <3.6V).
Now I am out of ideas. How can I debug the problem or what else can I try?
