kopia lustrzana https://github.com/meshtastic/protobufs
fix merge
rodzic
46319a0f53
commit
6421b29ef4
41
docs/docs.md
41
docs/docs.md
|
@ -10,6 +10,9 @@
|
||||||
- [deviceonly.proto](#deviceonly.proto)
|
- [deviceonly.proto](#deviceonly.proto)
|
||||||
- [DeviceState](#.DeviceState)
|
- [DeviceState](#.DeviceState)
|
||||||
|
|
||||||
|
- [environmental_measurement.proto](#environmental_measurement.proto)
|
||||||
|
- [EnvironmentalMeasurement](#.EnvironmentalMeasurement)
|
||||||
|
|
||||||
- [mesh.proto](#mesh.proto)
|
- [mesh.proto](#mesh.proto)
|
||||||
- [AdminMessage](#.AdminMessage)
|
- [AdminMessage](#.AdminMessage)
|
||||||
- [Channel](#.Channel)
|
- [Channel](#.Channel)
|
||||||
|
@ -148,6 +151,39 @@ the receive queue and use the preferences store for the other stuff
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="environmental_measurement.proto"></a>
|
||||||
|
<p align="right"><a href="#top">Top</a></p>
|
||||||
|
|
||||||
|
## environmental_measurement.proto
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name=".EnvironmentalMeasurement"></a>
|
||||||
|
|
||||||
|
### EnvironmentalMeasurement
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Field | Type | Label | Description |
|
||||||
|
| ----- | ---- | ----- | ----------- |
|
||||||
|
| temperature | [float](#float) | | |
|
||||||
|
| relative_humidity | [float](#float) | | |
|
||||||
|
| barometric_pressure | [float](#float) | | |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="mesh.proto"></a>
|
<a name="mesh.proto"></a>
|
||||||
<p align="right"><a href="#top">Top</a></p>
|
<p align="right"><a href="#top">Top</a></p>
|
||||||
|
|
||||||
|
@ -895,6 +931,8 @@ Reserved for built-in GPIO/example app. See remote_hardware.proto/HardwareMessag
|
||||||
| IP_TUNNEL_APP | 33 | Used for the python IP tunnel feature |
|
| IP_TUNNEL_APP | 33 | Used for the python IP tunnel feature |
|
||||||
| SERIAL_APP | 64 | Provides a hardware serial interface to send and receive from the Meshtastic network. Connect to the RX/TX pins of a device with 38400 8N1. Packets received from the Meshtastic network is forwarded to the RX pin while sending a packet to TX will go out to the Mesh network. Maximum packet size of 240 bytes.
|
| SERIAL_APP | 64 | Provides a hardware serial interface to send and receive from the Meshtastic network. Connect to the RX/TX pins of a device with 38400 8N1. Packets received from the Meshtastic network is forwarded to the RX pin while sending a packet to TX will go out to the Mesh network. Maximum packet size of 240 bytes.
|
||||||
|
|
||||||
|
Plugin is disabled by default can be turned on by setting SERIALPLUGIN_ENABLED = 1 in SerialPlugh.cpp.
|
||||||
|
|
||||||
Maintained by Jm Casler (MC Hamster) : jm@casler.org |
|
Maintained by Jm Casler (MC Hamster) : jm@casler.org |
|
||||||
| STORE_FORWARD_APP | 65 | STORE_FORWARD_APP (Work in Progress)
|
| STORE_FORWARD_APP | 65 | STORE_FORWARD_APP (Work in Progress)
|
||||||
|
|
||||||
|
@ -902,6 +940,9 @@ Maintained by Jm Casler (MC Hamster) : jm@casler.org |
|
||||||
| RANGE_TEST_APP | 66 | STORE_FORWARD_APP (Work in Progress)
|
| RANGE_TEST_APP | 66 | STORE_FORWARD_APP (Work in Progress)
|
||||||
|
|
||||||
Maintained by Jm Casler (MC Hamster) : jm@casler.org |
|
Maintained by Jm Casler (MC Hamster) : jm@casler.org |
|
||||||
|
| ENVIRONMENTAL_MEASUREMENT_APP | 67 | Provides a format to send and receive environmental data from the Meshtastic network.
|
||||||
|
|
||||||
|
Maintained by Charles Crossan (crossan007) : crossan007@gmail.com |
|
||||||
| PRIVATE_APP | 256 | Private applications should use portnums >= 256. To simplify initial development and testing you can use "PRIVATE_APP" in your code without needing to rebuild protobuf files (via bin/regin_protos.sh) |
|
| PRIVATE_APP | 256 | Private applications should use portnums >= 256. To simplify initial development and testing you can use "PRIVATE_APP" in your code without needing to rebuild protobuf files (via bin/regin_protos.sh) |
|
||||||
| ATAK_FORWARDER | 257 | ATAK Forwarder Plugin https://github.com/paulmandal/atak-forwarder |
|
| ATAK_FORWARDER | 257 | ATAK Forwarder Plugin https://github.com/paulmandal/atak-forwarder |
|
||||||
| MAX | 511 | Currently we limit port nums to no higher than this value |
|
| MAX | 511 | Currently we limit port nums to no higher than this value |
|
||||||
|
|
|
@ -85,13 +85,6 @@ enum PortNum {
|
||||||
*/
|
*/
|
||||||
IP_TUNNEL_APP = 33;
|
IP_TUNNEL_APP = 33;
|
||||||
|
|
||||||
/*
|
|
||||||
* Provides a format to send and receive environmental data from the Meshtastic network.
|
|
||||||
*
|
|
||||||
* Maintained by Charles Crossan (crossan007) : crossan007@gmail.com
|
|
||||||
*/
|
|
||||||
ENVIRONMENTAL_MEASUREMENT_APP = 34;
|
|
||||||
|
|
||||||
/** Provides a hardware serial interface to send and receive from the Meshtastic network.
|
/** Provides a hardware serial interface to send and receive from the Meshtastic network.
|
||||||
Connect to the RX/TX pins of a device with 38400 8N1. Packets received from the Meshtastic
|
Connect to the RX/TX pins of a device with 38400 8N1. Packets received from the Meshtastic
|
||||||
network is forwarded to the RX pin while sending a packet to TX will go out to the Mesh
|
network is forwarded to the RX pin while sending a packet to TX will go out to the Mesh
|
||||||
|
|
Ładowanie…
Reference in New Issue