Skip to content

Commit e766fd7

Browse files
committed
0.1.2 weight
1 parent 07b5f9e commit e766fd7

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

libraries/weight/keywords.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ gram2kilo KEYWORD2
1111
kilo2gram KEYWORD2
1212
lbs2ounce KEYWORD2
1313
ounce2lbs KEYWORD2
14+
1415
stone2lbs KEYWORD2
1516
lbs2stone KEYWORD2
1617
stone2kilo KEYWORD2
1718
kilo2stone KEYWORD2
1819
US2metric KEYWORD2
1920
metric2US KEYWORD2
2021

22+
2123
# Instances (KEYWORD2)
2224

2325

libraries/weight/library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/weight"
1717
},
18-
"version": "0.1.1",
18+
"version": "0.1.2",
1919
"license": "MIT",
2020
"frameworks": "arduino",
2121
"platforms": "*"

libraries/weight/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=weight
2-
version=0.1.1
2+
version=0.1.2
33
author=Rob Tillaart <[email protected]>
44
maintainer=Rob Tillaart <[email protected]>
55
sentence=Library of weight conversion functions

libraries/weight/weight.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
//
33
// FILE: weight.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.1.1
5+
// VERSION: 0.1.2
66
// PURPOSE: Collection weight conversion functions
7-
// URL: https://github.com/RobTillaart/HX711
7+
// URL: https://github.com/RobTillaart/weight
88
//
99
// HISTORY:
1010
// 0.1.0 2020-06-16 initial version
1111
// 0.1.1 2021-01-09 add uarduino-ci + unit test
12+
// 0.1.2 2021-01-09 fix URL
1213

1314

1415
#include "Arduino.h"
1516

1617

17-
#define WEIGHT_LIB_VERSION (F("0.1.1"))
18+
#define WEIGHT_LIB_VERSION (F("0.1.2"))
1819

1920

2021
float lbs2kilo(float lbs) { return lbs * 0.45359237; };

0 commit comments

Comments
 (0)