mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Add contact admin message
This commit is contained in:
parent
078ac8dfbe
commit
d266887bb2
1 changed files with 17 additions and 0 deletions
|
|
@ -397,6 +397,11 @@ message AdminMessage {
|
|||
*/
|
||||
bool commit_edit_settings = 65;
|
||||
|
||||
/*
|
||||
* Add a contact (User) to the nodedb
|
||||
*/
|
||||
Contact add_contact = 66;
|
||||
|
||||
/*
|
||||
* Tell the node to factory reset config everything; all device state and configuration will be returned to factory defaults and BLE bonds will be cleared.
|
||||
*/
|
||||
|
|
@ -472,3 +477,15 @@ message NodeRemoteHardwarePinsResponse {
|
|||
*/
|
||||
repeated NodeRemoteHardwarePin node_remote_hardware_pins = 1;
|
||||
}
|
||||
|
||||
message Contact {
|
||||
/*
|
||||
* The node number of the contact
|
||||
*/
|
||||
uint32 node_num = 1;
|
||||
|
||||
/*
|
||||
* The User of the contact
|
||||
*/
|
||||
User user = 2;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue