1/* 2 * Copyright (C) 2023 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto2"; 18 19package com.google.android.wearable.modes.telemetry; 20 21// Indicates type of Mode state 22enum ModeState { 23 MODE_STATE_UNKNOWN = 0; 24 MODE_STATE_OFF = 1; 25 MODE_STATE_ON = 2; 26} 27 28// Indicates Mode Id for a specific mode 29enum ModeId { 30 UNKNOWN_MODE = 0; 31 AIRPLANE_MODE = 1; 32 BEDTIME_MODE = 2; 33 BATTERY_SAVER_MODE = 3; 34 DO_NOT_DISTURB_MODE = 4; 35 THEATER_MODE = 5; 36 TOUCH_LOCK_MODE = 6; 37 SCHOOL_MODE = 7; 38 OFF_BODY = 8; 39} 40 41// Indicates Network state as being on or off 42enum NetworkState { 43 UNKNOWN = 0; 44 OFF = 1; 45 ON = 2; 46} 47