Skip to content

Commit 0a03fc8

Browse files
committed
Merge branch 'develop'
2 parents 4f69a0e + 8ca5691 commit 0a03fc8

File tree

3 files changed

+22
-32
lines changed

3 files changed

+22
-32
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ Temporary Items
5656
.gcc-flags.json
5757
lib/readme.txt
5858
platformio.ini
59+
.history
60+
.pio
61+
.vscode
5962

6063
# Prerequisites
6164
*.d

library.json

Lines changed: 17 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
{
22
"name": "KellerModbus",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"keywords": "Keller, Modbus, communication, bus, sensor, water level, pressure",
55
"description": "Arduino library for communication with Keller pressure and water level sensors via Modbus.",
6-
"repository":
7-
{
6+
"repository": {
87
"type": "git",
98
"url": "https://github.com/EnviroDIY/KellerModbus"
109
},
11-
"authors":
12-
[
10+
"authors": [
1311
{
1412
"name": "Anthony Aufdenkampe",
1513
"email": "aaufdenkampe@limno.com",
@@ -22,32 +20,20 @@
2220
"license": "BSD-3-Clause",
2321
"frameworks": "arduino",
2422
"platforms": "atmelavr, atmelsam",
25-
"dependencies":
26-
[
27-
{
28-
"name": "SensorModbusMaster",
29-
"library id": "1824",
30-
"url": "https://github.com/EnviroDIY/SensorModbusMaster.git",
31-
"version": ">=0.6.2",
32-
"note": "EnviroDIY SensorModbusMaster - Arduino library for communicating via modbus with the Arduino acting as the modbus master.",
33-
"authors": [
34-
"Sara Damiano"
35-
],
36-
"frameworks": "arduino",
37-
"platforms": "atmelavr, atmelsam"
38-
}
39-
],
40-
"examples":
41-
[
42-
"examples/*/*.ino",
43-
"utilities/*/*.ino"
23+
"dependencies": [
24+
{
25+
"name": "SensorModbusMaster",
26+
"library id": "1824",
27+
"url": "https://github.com/EnviroDIY/SensorModbusMaster.git",
28+
"version": ">=0.6.2",
29+
"note": "EnviroDIY SensorModbusMaster - Arduino library for communicating via modbus with the Arduino acting as the modbus master.",
30+
"authors": ["Sara Damiano"],
31+
"frameworks": "arduino",
32+
"platforms": "atmelavr, atmelsam"
33+
}
4434
],
45-
"export":
46-
{
47-
"exclude":
48-
[
49-
"doc/*",
50-
"sensor_tests/*"
51-
]
35+
"examples": ["examples/*/*.ino", "utilities/*/*.ino"],
36+
"export": {
37+
"exclude": ["doc/*", "sensor_tests/*"]
5238
}
5339
}

library.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name=KellerModbus
2-
version=0.2.1
2+
version=0.2.2
33
author=Anthony Aufdenkampe <aaufdenkampe@limno.com>
44
maintainer=Anthony Aufdenkampe <aaufdenkampe@limno.com>
55
sentence=Arduino library for communication with Keller pressure and water level sensors via Modbus.
66
paragraph=A library to use an Arduino as a master to control and communicate via modbus with the pressure and water level sensors produced by Keller. Depends on the EnviroDIY/SensorModbusMaster library.
77
category=Sensors
88
url=https://github.com/EnviroDIY/KellerModbus
99
architectures=avr,sam,samd
10+
depends=SensorModbusMaster@0.6.8

0 commit comments

Comments
 (0)