Skip to content

Commit 1095754

Browse files
committed
Merge remote-tracking branch 'origin/master' into 2.6
2 parents 9c1bf5b + b80785b commit 1095754

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

meshtastic/config.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,12 @@ message Config {
743743
* Indicates how to rotate or invert the compass output to accurate display on the display.
744744
*/
745745
CompassOrientation compass_orientation = 11;
746+
747+
/*
748+
* If false (default), the device will display the time in 24-hour format on screen.
749+
* If true, the device will display the time in 12-hour format on screen.
750+
*/
751+
bool use_12h_clock = 12;
746752
}
747753

748754
/*

meshtastic/mesh.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,11 @@ enum HardwareModel {
670670
*/
671671
MESH_TAB = 86;
672672

673+
/*
674+
* MeshLink board developed by LoraItalia. NRF52840, eByte E22900M22S (Will also come with other frequencies), 25w MPPT solar charger (5v,12v,18v selectable), support for gps, buzzer, oled or e-ink display, 10 gpios, hardware watchdog
675+
* https://www.loraitalia.it
676+
*/
677+
MESHLINK = 87;
673678

674679

675680
/*

meshtastic/telemetry.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,16 @@ message EnvironmentMetrics {
134134
*/
135135
optional float radiation = 18;
136136

137+
/*
138+
* Rainfall in the last hour in mm
139+
*/
140+
optional float rainfall_1h = 19;
141+
142+
/*
143+
* Rainfall in the last 24 hours in mm
144+
*/
145+
optional float rainfall_24h = 20;
146+
137147
}
138148

139149
/*
@@ -542,6 +552,11 @@ enum TelemetrySensorType {
542552
*/
543553
INA226 = 34;
544554

555+
/*
556+
* DFRobot Gravity tipping bucket rain gauge
557+
*/
558+
DFROBOT_RAIN = 35;
559+
545560
}
546561

547562
/*

0 commit comments

Comments
 (0)