Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / lighting-app / lighting-common / lighting_service / pigweed_lighting.proto
1 syntax = "proto3";
2
3 package chip.rpc;
4
5 message Empty {
6 }
7
8 message Button {
9   //0=FUNCTION 1=LIGHTING 2=THREAD_START 3=BLE_START
10   uint32 idx = 1;
11
12   // 0=release 1=push
13   uint32 action = 2;
14 }
15
16 service LightingService {
17   rpc ButtonEvent(Button) returns (Empty){}
18 }