Skip to content

Commit c898e65

Browse files
committed
more examples recompiled for next release.
1 parent e14ca6a commit c898e65

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

examples/nano33ble/nano33ble.emf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"offset": 0,
1212
"divisor": 10,
1313
"unitName": "C",
14+
"step": 1,
1415
"name": "Temp",
1516
"id": 1,
1617
"eepromAddress": -1,
@@ -28,6 +29,7 @@
2829
"offset": 0,
2930
"divisor": 10,
3031
"unitName": "%",
32+
"step": 1,
3133
"name": "Humidity",
3234
"id": 3,
3335
"eepromAddress": -1,
@@ -45,6 +47,7 @@
4547
"offset": 0,
4648
"divisor": 10,
4749
"unitName": "KPa",
50+
"step": 1,
4851
"name": "B. Pressure",
4952
"id": 2,
5053
"eepromAddress": -1,
@@ -182,6 +185,7 @@
182185
"offset": 0,
183186
"divisor": 0,
184187
"unitName": "%",
188+
"step": 1,
185189
"name": "Output PWM",
186190
"id": 13,
187191
"eepromAddress": -1,

examples/nano33ble/nano33ble_menu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ void setupMenu() {
5555
// First we set up eeprom and authentication (if needed).
5656

5757
// Now add any readonly, non-remote and visible flags.
58+
menuBPressure.setReadOnly(true);
5859
menuTemp.setReadOnly(true);
5960
menuHumidity.setReadOnly(true);
60-
menuBPressure.setReadOnly(true);
6161

6262
// Code generated by plugins.
6363
gfx.begin();

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"authors": "DaveTCC"
2323
}
2424
],
25-
"version": "2.3.2",
25+
"version": "2.4.0",
2626
"license": "Apache-2.0",
2727
"frameworks": "arduino, mbed",
2828
"platforms": "*"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
name=tcMenu
7-
version=2.3.2
7+
version=2.4.0
88
maintainer=www.thecoderscorner.com
99
author=davetcc
1010
category=Other

src/tcMenuVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ namespace tccore {
1616

1717
// here we define the version as both a string and separate field
1818
#define TCMENU_MAJOR 2
19-
#define TCMENU_MINOR 3
20-
#define TCMENU_PATCH 2
19+
#define TCMENU_MINOR 4
20+
#define TCMENU_PATCH 0
2121

2222
/**
2323
* A helper to generate the major minor version numbers used in the protocol

0 commit comments

Comments
 (0)