Sign in
pigweed
/
third_party
/
github
/
project-chip
/
connectedhomeip
/
3d80093d7c4eb645ddedc42ccae5e0930ce7c97a
/
.
/
examples
/
common
/
pigweed
/
protos
/
button_service.proto
blob: cf2c5390af29cacb1b7bd94cc67e84e3c6ddbe73 [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
import
'pw_protobuf_protos/common.proto'
;
package
chip
.
rpc
;
message
ButtonEvent
{
uint32
idx
=
1
;
bool
pushed
=
2
;
}
service
Button
{
rpc
Event
(
ButtonEvent
)
returns
(
pw
.
protobuf
.
Empty
){}
}