Arduino-ReactiveArduino icon indicating copy to clipboard operation
Arduino-ReactiveArduino copied to clipboard

BUG: AnalogOutput

Open vgb1993 opened this issue 3 years ago • 0 comments
trafficstars

Hello there, this is amazing, thanks!

I found a bug in Observars/ObserverAnalogOutput.h: void ObserverAnalogOutput<T>::OnNext(T value) { analogWrite(value); }

Should be: void ObserverAnalogOutput<T>::OnNext(T value) { analogWrite(this->_pin, value); }

Again, amazing work!

vgb1993 avatar May 12 '22 23:05 vgb1993