aes70
Version:
A controller library for the AES70 protocol.
53 lines (50 loc) • 1.16 kB
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Generic device states
* @class OcaDeviceGenericState
*/
export class OcaDeviceGenericState extends Enum({
NormalOperation: 0,
Initializaing: 1,
Updating: 2,
Fault: 3,
ExpansionBase: 128,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaDeviceGenericState}
* @member NormalOperation
* @memberof OcaDeviceGenericState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaDeviceGenericState}
* @member Initializaing
* @memberof OcaDeviceGenericState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaDeviceGenericState}
* @member Updating
* @memberof OcaDeviceGenericState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaDeviceGenericState}
* @member Fault
* @memberof OcaDeviceGenericState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``128``.
* @type {OcaDeviceGenericState}
* @member ExpansionBase
* @memberof OcaDeviceGenericState
* @static
*/