forked from boston-dynamics/spot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpower_service.proto
23 lines (17 loc) · 876 Bytes
/
power_service.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2019 Boston Dynamics, Inc. All rights reserved.
//
// Downloading, reproducing, distributing or otherwise using the SDK Software
// is subject to the terms and conditions of the Boston Dynamics Software
// Development Kit License (20191101-BDSDK-SL).
syntax = "proto3";
package bosdyn.api;
option java_outer_classname = "PowerServiceProto";
import "bosdyn/api/power.proto";
service PowerService {
/// Starts a power command on the robot. A robot can only accept one power command at once.
/// Power commands, are not interruptible. Once a command is issued, it must complete before
/// another command can be issued.
rpc PowerCommand(PowerCommandRequest) returns (PowerCommandResponse) {}
/// Check the status of a power command.
rpc PowerCommandFeedback(PowerCommandFeedbackRequest) returns (PowerCommandFeedbackResponse) {}
}