mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
3b7fe2bb1b
The leading zero is non-semver compliant and causes the Arduino IDE to display the warning: Invalid version found: ... Fixes https://github.com/RobTillaart/Arduino/issues/70 |
||
---|---|---|
.. | ||
examples | ||
fraction.cpp | ||
fraction.h | ||
library.json | ||
library.properties | ||
readme.txt |
Fraction is an experimental fraction library for the Arduino. The code is working with a number of limitations among others: - denominator is max 4 digits to keep code for multiply and divide simple - therefore not all fractions are exact - the range of numbers supported is limited. That said, the library is useful e.g. to display float numbers as a fraction. From programming point of view the fractionize function, converting a double into a fraction is a nice programming problem, fast with a minimal error. In short, use fractions with care otherwise your sketch might get broken ;)