arduino-libs-manchester
arduino-libs-manchester copied to clipboard
Hello all, kind of urgent issue. Great library, and I'm using lots on Attiny85's and 328 Uno, but for the life of me I can't get it to receive on...
Hi, I'm using the manchester library for a simple Visible Light Communication setup. Instead of a wired connection I use an LED as transmitter and a photodiode with a pull-down...
The ATTiny85 code fails to read input from a 433Mhz RF receiver when working at 1MHz. The following example compiles perfectly and runs OK wihen the ATTiny85 is working at...
Hi! First I think one line for the atmega8 is missing here ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # if defined( **AVR_ATtiny45** ) ISR(TIMER1_COMPA_vect) # elif defined( **AVR_ATtiny84** ) ISR(TIM1_COMPA_vect) # elif defined(**AVR_ATmega32U4**) ## ISR(TIMER3_COMPA_vect)...
(attiny85 too)because: # define F_CPU 8000000UL # if defined( __AVR_ATtinyX5__ ) ... # if F_CPU == 8000000UL ``` __TCCR1 = _BV(CTC1) | _BV(CS12) | _BV(CS11) | _BV(CS10);__ // 1/64 prescaler...
Hi, First of all, thanks for your great work :) I have an issue with the library. I'm using an Arduino UNO to receive data. In fact it doesn't work...
Trying to get this to send to a raspberry pi runing https://github.com/ninjablocks/433Utils in sniffer mode. Any ideas what i need to do to the send code to get this to...