mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.3 WaterMix
This commit is contained in:
parent
670d694a4b
commit
d775745864
@ -6,13 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.1.3] - 2023-11-23
|
||||
- update readme.md
|
||||
|
||||
|
||||
## [0.1.2] - 2023-09-08
|
||||
- add base class **LiquidMix** (moved functions up)
|
||||
- made **WaterMix::density()** public
|
||||
- update readme.md
|
||||
- fix keywords.txt
|
||||
|
||||
|
||||
## [0.1.1] - 2023-08-30
|
||||
- add **void addExact(float volume, float temperature)** (works only for water).
|
||||
- add **float mass()** (works only for water).
|
||||
|
@ -238,7 +238,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
|
||||
- update documentation
|
||||
- library can be used for water and salinity and other linear related things.
|
||||
|
||||
|
||||
#### Should
|
||||
|
||||
- investigate linear expansion
|
||||
@ -246,7 +245,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
|
||||
- do not make the library too complex (see could below).
|
||||
- extend unit tests
|
||||
|
||||
|
||||
#### Could
|
||||
|
||||
- add **void cool(time)** == depends on many factors
|
||||
@ -258,7 +256,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
|
||||
- replace div and mul with operators \* and \/
|
||||
- investigate injection of density function to make LiquidMix generic?
|
||||
|
||||
|
||||
#### Wont (or on special request)
|
||||
|
||||
- add "unit string" + Printable interface?
|
||||
@ -277,7 +274,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
|
||||
- must use defined liquid and temp scale.
|
||||
- user responsibility for now.
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
If you appreciate my libraries, you can support the development and maintenance.
|
||||
|
@ -3,14 +3,14 @@
|
||||
// FILE: WaterMix.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// PURPOSE: Arduino library for mixing water with different temperatures.
|
||||
// VERSION: 0.1.2
|
||||
// VERSION: 0.1.3
|
||||
// URL: https://github.com/RobTillaart/WaterMix
|
||||
|
||||
|
||||
#include "Arduino.h"
|
||||
|
||||
|
||||
#define WATERMIX_LIB_VERSION (F("0.1.2"))
|
||||
#define WATERMIX_LIB_VERSION (F("0.1.3"))
|
||||
|
||||
|
||||
////////////////////////////////////////////
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/WaterMix.git"
|
||||
},
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"license": "MIT",
|
||||
"frameworks": "*",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=WaterMix
|
||||
version=0.1.2
|
||||
version=0.1.3
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for mixing water with different temperatures.
|
||||
|
Loading…
x
Reference in New Issue
Block a user