Sign in
pigweed
/
third_party
/
github
/
project-chip
/
connectedhomeip
/
cc21d5c70ac08929e68aadb2a62b7c55b7f67136
/
.
/
examples
/
lighting-app
/
lighting-common
/
pigweed_lighting.proto
blob: cb5fc5fb6ec5510db7bee4014ec464d154c6805a [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
package
chip
.
rpc
;
message
Empty
{
}
message
Button
{
//0=FUNCTION 1=LIGHTING 2=THREAD_START 3=BLE_START
uint32
idx
=
1
;
// 0=release 1=push
uint32
action
=
2
;
}
service
LightingService
{
rpc
ButtonEvent
(
Button
)
returns
(
Empty
){}
}