Sofian Audry

Results 112 comments of Sofian Audry

Run comparative tests between using the Scaler vs the MinMaxScaler units. You can plot the values using the Serial plotter. Here is a basic example you can use: it compares...

Great! Can you try different values for the scales span? Also, they all need some time to calibrate. A span of 1 should give results very close to the min...

I actually don't understand these graphics: the scaling doesn't seem to match the signal. Almost feel like they're inverted or something.

Yes, I tried some tests today. What I observe (which totally makes sense) is that even for a maximum span, the robust scaler is less responsive to sudden changes and...

On a side note: if you do not want to use Arduino, you could still use the very practical serial plotter in VScode (there are two options, the one I...

I created a separate scaler which I renamed "RobustScaler" and preserved the MinMaxScaler, since they are different scalers with different properties.

I think an external link is better, also because the content is also used to generate a PDF and this will certainly not support iframes.

How is this done in other Arduino libraries?

It is possible to put a platformio.ini file directly in each example folder eg. in: examples/01.Basics/Blink You add a platformio.ini file like this: ``` [platformio] ; Tell PIO to treat...

> `0xFFFFFFFF = 4294967295` > > But `fixedTofloat(0.5)` expands to `0.5 * 0xFFFFFFFF` = `2147483647.5` = `0x7FFFFFFF` > > The result is NOT `0x80000000` (2147483648) but one bit shy. Is...