Skip to content

Commit

Permalink
update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Nov 15, 2023
1 parent 3e7ea20 commit 222bb87
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.3.1] - 2023-11-15
- update readme.md


## [0.3.0] - 2023-02-23
- refactor getter constants
- add return value to **change()** functions.
Expand Down
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
[![Arduino CI](https://github.com/RobTillaart/pressure/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
[![Arduino-lint](https://github.com/RobTillaart/pressure/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/pressure/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/pressure/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/pressure/actions/workflows/jsoncheck.yml)
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/pressure.svg)](https://github.com/RobTillaart/pressure/issues)

[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/pressure/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/pressure.svg?maxAge=3600)](https://github.com/RobTillaart/pressure/releases)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/pressure.svg)](https://registry.platformio.org/libraries/robtillaart/pressure)


# pressure
Expand Down Expand Up @@ -169,12 +172,10 @@ Kelvin = Fahrenheit \* 5 / 9 + 290.93; // one operator less.
- find a good reference for conversion constants.
- https://www.semicore.com/reference/pressure-conversion-reference


#### Should

- test with gas law.


#### Could

- **float AddMillibar(float value)** simple math with all units (12x)
Expand All @@ -183,7 +184,6 @@ Kelvin = Fahrenheit \* 5 / 9 + 290.93; // one operator less.
- **float setMillibar(float value)** return pressure in millibar all setters
- ```return _pressure = value * factor;```


#### Wont (unless requested)

- **float changeTC(float T1, float T2)** only change temperature, T in Celsius.
Expand All @@ -198,4 +198,14 @@ Kelvin = Fahrenheit \* 5 / 9 + 290.93; // one operator less.
- defaults for functions?
- none <<<<<<<<<<<<<<<<<<<<<<<<<<<
- 0 like constructor?
- 1 to get conversion constant?
- 1 to get conversion constant?


## 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,

4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"type": "git",
"url": "https://github.com/RobTillaart/pressure.git"
},
"version": "0.3.0",
"version": "0.3.1",
"license": "MIT",
"frameworks": "arduino",
"frameworks": "*",
"platforms": "*",
"headers": "pressure.h"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=pressure
version=0.3.0
version=0.3.1
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for pressure conversion
Expand Down
4 changes: 2 additions & 2 deletions pressure.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
//
// FILE: pressure.h
// AUTHOR: Rob Tillaart
// VERSION: 0.3.0
// VERSION: 0.3.1
// PURPOSE: Arduino library for pressure conversion
// URL: https://github.com/RobTillaart/pressure



#define PRESSURE_LIB_VERSION (F("0.3.0"))
#define PRESSURE_LIB_VERSION (F("0.3.1"))


// CONSTANTS NEED TO BE VERIFIED
Expand Down

0 comments on commit 222bb87

Please sign in to comment.