Hello everybody,
maybee someone can give me a hint on whats wrong here:
void loop() {
readdata();
rf12recvDone();
if (rf12canSend()){ // wait until sending is allowed
rf12sendStart(0, &tempC, sizeof tempC );
Serial.print("temp: ");
Serial.println(tempC);
}
}
what i get is only one printing of the tempC on the Serial console. then nothing more. when i reset the arduino, i always get
one reading.. seems strange, any ideas?
seems as if rf12canSend() is always false..
thx a lot in advance,
j
