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

ReactiveArduino implements observable-observer pattern on Arduino

Results 4 Arduino-ReactiveArduino issues
Sort by recently updated
recently updated
newest added
trafficstars

I would really like to have some JoinCreation operators. Specialy Merge and CombineLatest are the ones I use most. https://rxjs.dev/guide/operators#join-creation-operators Are there any plans to add those? Cheers!

Hello there, this is amazing, thanks! I found a bug in Observars/ObserverAnalogOutput.h: ` void ObserverAnalogOutput::OnNext(T value) { analogWrite(value); } ` Should be: ` void ObserverAnalogOutput::OnNext(T value) { analogWrite(this->_pin, value); }...

When there are two cpp files present that include the ReactiveArduinoLib.h file, linking breaks. This is probably caused because not all the definitions are templates but do generate code. Looks...

To subscribe to an observable this can be done by creating a class that implements IObserver and subscibe. However, it is not possible to unsubscribe. When subscribing a reference should...