GY-63_MS5611/libraries/weight/README.md

198 lines
5.3 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/weight/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-12-29 09:51:56 -05:00
[![Arduino-lint](https://github.com/RobTillaart/weight/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/weight/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/weight/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/weight/actions/workflows/jsoncheck.yml)
2023-08-29 14:21:14 -04:00
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/weight.svg)](https://github.com/RobTillaart/weight/issues)
2021-01-29 06:31:58 -05:00
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/weight/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/weight.svg?maxAge=3600)](https://github.com/RobTillaart/weight/releases)
2023-08-29 14:21:14 -04:00
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/weight.svg)](https://registry.platformio.org/libraries/robtillaart/weight)
2021-01-29 06:31:58 -05:00
# Weight
2023-08-29 14:21:14 -04:00
Arduino library to convert weight units.
2021-12-29 09:51:56 -05:00
2021-01-29 06:31:58 -05:00
## Description
Weight.h is a library containing weight conversion functions.
2022-12-05 14:23:09 -05:00
Open for additions, including obscure weight metrics or
2021-01-29 06:31:58 -05:00
weight related math functions and constants.
2023-11-23 09:19:06 -05:00
#### Overview of conversions:
```
stone - lbs - ounce
| | |
kilo kilo - gram
kilo - (stone, lbs, ounce)
```
2023-08-29 14:21:14 -04:00
#### Related
- https://github.com/RobTillaart/AtomicWeight
- https://github.com/RobTillaart/VolumeConverter
- https://github.com/RobTillaart/HX711
- https://github.com/RobTillaart/HX711_MP
2021-01-29 06:31:58 -05:00
## Interface
2023-11-23 09:19:06 -05:00
```cpp
#include "weight.h"
2021-01-29 06:31:58 -05:00
```
Functions are straightforward.
- **float lbs2kilo(float lbs)**
- **float kilo2lbs(float kilos)**
- **float ounce2gram(float ounce)**
- **float gram2ounce(float gram)**
- **float gram2kilo(float gram)**
- **float kilo2gram( float kilo)**
- **float lbs2ounce(float lbs)**
- **float ounce2lbs(float ounce)**
- **float stone2lbs(float stone)**
- **float lbs2stone(float lbs)**
- **float stone2kilo(float stone)**
- **float kilo2stone(float kilo)**
- **float US2metric(float stone, float lbs, float ounce)**
- **float metric2US(float kilo, float &stone, float &lbs, float &ounce)**
2021-12-29 09:51:56 -05:00
## Operation
See examples
2022-12-05 14:23:09 -05:00
----
# weightConverter class
Since version 0.2.0 a weight convertor class is added to convert to and from
other (less known) weight scales.
The idea is to set a value in one scale and retrieve it in the other.
As the converter holds the last value set, multiple conversions of the same
weight are easy.
New conversions are possible by providing a setXYZ and getXYZ() function.
These two should convert to and from grams respectively.
Additions are welcome, please open an issue.
2023-08-29 14:21:14 -04:00
Internal representation is the gram as it the ISO standard.
Since version 0.3.0 the converter can also add different units.
2022-12-05 14:23:09 -05:00
## Interface
2023-11-23 09:19:06 -05:00
```cpp
#include "weight.h"
```
2022-12-05 14:23:09 -05:00
#### Constructor
- **weightConverter()**
2023-08-29 14:21:14 -04:00
#### Setters
2022-12-05 14:23:09 -05:00
- **void setKilogram(float value = 0)**
- **void setGram(float value = 0)**
- **void setLBS(float value = 0)**
- **void setStone(float value = 0)**
- **void setOunce(float value = 0)**
- **void setLongTonUK(float value = 0)**
- **void setShortTonUS(float value = 0)**
- **void setQuarterUK(float value = 0)**
- **void setQuarterUS(float value = 0)**
- **void setSlug(float value = 0)**
- **void setTroyPound(float value = 0)**
- **void setTroyOunce(float value = 0)**
- **void setRobie(float value = 0)**
- **void setDram(float value = 0)**
- **void setDrachme(float value = 0)**
- **void setPoint(float value = 0)**
- **void setGrain(float value = 0)**
- **void setCarat(float value = 0)**
2023-08-29 14:21:14 -04:00
#### Adders
- **void addKilogram(float value = 0)**
- **void addGram(float value = 0)**
- **void addLBS(float value = 0)**
- **void addStone(float value = 0)**
- **void addOunce(float value = 0)**
- **void addLongTonUK(float value = 0)**
- **void addShortTonUS(float value = 0)**
- **void addQuarterUK(float value = 0)**
- **void addQuarterUS(float value = 0)**
- **void addSlug(float value = 0)**
- **void addTroyPound(float value = 0)**
- **void addTroyOunce(float value = 0)**
- **void addRobie(float value = 0)**
- **void addDram(float value = 0)**
- **void addDrachme(float value = 0)**
- **void addPoint(float value = 0)**
- **void addGrain(float value = 0)**
- **void addCarat(float value = 0)**
#### Getters
2022-12-05 14:23:09 -05:00
- **float getKilogram()**
- **float getGram()**
- **float getLBS()**
- **float getStone()**
- **float getOunce()**
- **float getLongTonUK()**
- **float getShortTonUS()**
- **float getQuarterUK()**
- **float getQuarterUS()**
- **float getSlug()**
- **float getTroyPound()**
- **float getTroyOunce()**
- **float getRobie()**
- **float getDram()**
- **float getDrachme()**
- **float getPoint()**
- **float getGrain()**
- **float getCarat()**
2023-11-23 09:19:06 -05:00
2022-11-27 05:13:09 -05:00
## Future
2021-12-29 09:51:56 -05:00
2023-08-29 14:21:14 -04:00
#### Must
2023-11-23 09:19:06 -05:00
2021-12-29 09:51:56 -05:00
- improve documentation
2022-12-05 14:23:09 -05:00
- where are units used
2022-11-27 05:13:09 -05:00
2023-08-29 14:21:14 -04:00
#### Should
2022-12-05 14:23:09 -05:00
2022-11-27 05:13:09 -05:00
2023-08-29 14:21:14 -04:00
#### Could
2022-11-27 05:13:09 -05:00
2023-11-23 09:19:06 -05:00
- create data types of stone lbs kilo etc.?
- should float be double?
2022-12-05 14:23:09 -05:00
2023-08-29 14:21:14 -04:00
#### Won't (unless)
2023-11-23 09:19:06 -05:00
2022-11-27 05:13:09 -05:00
- large masses - sun planets ? (see relativity library)
- gravity constants of planets REL or ABS eg REL_GRAVITY_EARTH 1.0
2021-01-29 06:31:58 -05:00
- molarity functions
- mass of common substances.
2023-08-29 14:21:14 -04:00
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.
Thank you,
2021-01-29 06:31:58 -05:00