// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Iot.Device.Arduino { /// /// Possible results of sending a Firmata command /// public enum CommandError { /// /// No error /// None = 0, /// /// The remote side is busy. The command was ignored. /// EngineBusy = 1, /// /// The arguments provided were invalid /// InvalidArguments = 2, /// /// The remote side is out of memory /// OutOfMemory = 3, /// /// There was an internal error processing the request. /// InternalError = 4, /// /// The board timed out executing the command. /// Timeout = 5, /// /// The device has been reset. /// DeviceReset = 6, /// /// The command was aborted. /// Aborted = 7, } }