TinyRF icon indicating copy to clipboard operation
TinyRF copied to clipboard

A small Arduino library for using 315MHz / 433MHz RF modules with ATtiny13 and other low-memory microcontrollers.

Results 9 TinyRF issues
Sort by recently updated
recently updated
newest added

We should init the emitter with a TX parameter `setupTransmitter(TX_PIN) ` like we do with `setupReceiver(RX_PIN); ` Then we don't have to touch the Settings.h file.

using TinyRF_RX.h to receive string of 55 character. ESP8266 is receiving properly but suddenly once in a while it thorws exception and restarts, below are the exception details. if i...

Hello! Thank you for your work on this library, as it's one of the best for low memory devices, like the attiny family. Lately I've been experimenting with the ch55x...

In TinyRF_RX.cpp, line 381, for loop always prints 256 characters regardless of buffer size defined in TRF_RX_BUFFER_SIZE. It suffices to change hardcoded 256 to TRF_RX_BUFFER_SIZE. In lim_sub function int sub...

Hi, during attempt to import this library using TinyRF-v1.7.zip I got following error: ![image](https://github.com/pouriap/TinyRF/assets/69058689/3bc273d2-45ee-48e0-85c2-9b797827ae2f) Arduino library specification mandates that there should be root folder in zip file. The only change...

I tried compiling the TinyRF85 Receiver example with board "Digispark (Default - 16.5MHz)" which is my digispark ATtiny85 board. I chaged the line #include to #include because the compiler thought...

Hi, I'm using TinyRF on an UNO and when using the following snippet: ``` const char* msg = "Hello!"; sendMulti((byte*)msg, strlen(msg), 2); ``` I noticed that its taking upwards of...

i changed pin from 2 to 11 (i use arduino nano)

Port the receiver to be able to run on Attiny13 chip.

enhancement