mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Admin message for remote hardware pins
This commit is contained in:
parent
30e8392c97
commit
4035748a37
1 changed files with 19 additions and 0 deletions
|
|
@ -204,6 +204,15 @@ message AdminMessage {
|
|||
*/
|
||||
HamParameters set_ham_mode = 18;
|
||||
|
||||
/*
|
||||
* Get the mesh's nodes with their available gpio pins for RemoteHardware module use
|
||||
*/
|
||||
bool get_node_remote_hardware_pins_request = 19;
|
||||
|
||||
/*
|
||||
* Respond with the mesh's nodes with their available gpio pins for RemoteHardware module use
|
||||
*/
|
||||
NodeRemoteHardwarePinsResponse get_node_remote_hardware_pins_response = 20;
|
||||
/*
|
||||
* Set the owner for this node
|
||||
*/
|
||||
|
|
@ -309,3 +318,13 @@ message HamParameters {
|
|||
*/
|
||||
string short_name = 4;
|
||||
}
|
||||
|
||||
/*
|
||||
* Response envelope for node_remote_hardware_pins
|
||||
*/
|
||||
message NodeRemoteHardwarePinsResponse {
|
||||
/*
|
||||
* Nodes and their respective remote hardware GPIO pins
|
||||
*/
|
||||
repeated NodeRemoteHardwarePins node_remote_hardware_pins = 1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue