Class RobotSettings
THe permanently stored Vector robot settings
Namespace: Anki.Vector.Types
Assembly: Anki.Vector.dll
Syntax
public class RobotSettings
Fields
| Improve this Doc View SourceLocales
The supported locales
public static readonly IReadOnlyDictionary<string, string> Locales
Field Type
IReadOnlyDictionary<String, String> |
Timezones
The supported timezones
public static readonly IReadOnlyList<string> Timezones
Field Type
IReadOnlyList<String> |
Properties
| Improve this Doc View SourceButtonWakeWord
Gets or sets the button wake word. This is which service (Vector or Alexa) responds when his back button is pressed.
[JsonProperty("button_wakeword")]
public ButtonWakeWord ButtonWakeWord { get; set; }
Property Type
ButtonWakeWord |
Clock24Hour
Gets or sets a value indicating whether clock is display in 24 hour style.
[JsonProperty("clock_24_hour")]
public bool Clock24Hour { get; set; }
Property Type
Boolean |
DefaultLocation
Gets or sets the default physical location of Vector (city, state/prov, country).
[JsonProperty("default_location")]
public string DefaultLocation { get; set; }
Property Type
String |
DistIsMetric
Gets or sets a value indicating whether distance is displayed in metric.
[JsonProperty("dist_is_metric")]
public bool DistIsMetric { get; set; }
Property Type
Boolean |
EyeColor
Gets or sets Vector's eye color
[JsonProperty("eye_color")]
public EyeColor EyeColor { get; set; }
Property Type
EyeColor |
Locale
Gets or sets the language locale of Vector (en_US, en_UK, en_AU).
[JsonProperty("locale")]
public string Locale { get; set; }
Property Type
String |
MasterVolume
Gets or sets the master volume.
[JsonProperty("master_volume")]
public RobotVolume MasterVolume { get; set; }
Property Type
RobotVolume |
TempIsFahrenheit
Gets or sets a value indicating whether temperature is displayed in Fahrenheit.
[JsonProperty("temp_is_fahrenheit")]
public bool TempIsFahrenheit { get; set; }
Property Type
Boolean |
TimeZone
Gets or sets the time zone as a standard timezone database name (e.g. "America/Los_Angeles")
[JsonProperty("time_zone")]
public string TimeZone { get; set; }
Property Type
String |