Sofian Audry
Sofian Audry
A proper fix would be to explicitely add an operator to multiply two Node objects (and we should also add other operators +-/)
This has been fixed.
Same for analogWriteResolution()...
In fact I am wondering if we should not have a single unit that would integrate Alarm, Timer and Chronometer. Essentially, it would be an Alarm with an option for...
See this https://chat.openai.com/c/108e2fd3-f702-4c7f-84ca-208c0beab9bf Also: https://www.coranac.com/2009/07/sines/
Also this P5/java library contains a FastMath class with pretty interesting functions to efficiently compute math functions: https://sourceforge.net/projects/sprites4processing/
Started working heavily on this, bringing in an implementation from PJRC Audio library for the 32bits based sine wave appxoimation using Taylor expansion. Ran some benchmarks: ``` Uno 16 sample...
This could possibly be an extra Plaquette-dependent library.
Check this out: https://github.com/braydenanderson2014/C-Arduino-Libraries/tree/main/lib/ArrayList
I started to implement a class but there are problems, putting it here for later: ```c++ class UnitList : public ArrayList { public: UnitList(size_t initialCapacity = 8) : ArrayList(initialCapacity) {}...