Interface IRemoteRobotConfiguration
Robot configuration information for remote (over the Internet) connections. This structure does not include IP address, instead it has a RemoteHost property which can contain an IP address or hostname and optionally include the port to connect with.
Namespace: Anki.Vector
Assembly: Anki.Vector.dll
Syntax
public interface IRemoteRobotConfiguration
Properties
| Improve this Doc View SourceCertificate
Gets the certificate text.
string Certificate { get; }
Property Type
String |
Guid
Gets the unique identifier.
string Guid { get; }
Property Type
String |
RemoteHost
Gets the remote robot host and port. This can be an IP address (196.168.5.123) or host name (home.whatever.com") optionally followed by a colon and the port to connect to (196.168.5.123:4545 or home.whatever.com:4444)
string RemoteHost { get; }
Property Type
String |
RobotName
Gets the name of the robot. This is in the form "Vector-XXXX"
string RobotName { get; }
Property Type
String |
SerialNumber
Gets the robot serial number.
string SerialNumber { get; }
Property Type
String |