RGLCommand
Objective-C
NS_ENUM(NSInteger, RGLCommand) {
RGLCommandUnknown = 0,
RGLCommandRfidSendData = 100,
RGLCommandRfidNotify = 101,
RGLCommandRfidGetDataForScenario = 102,
RGLCommandTorchGetUVFoto = 200,
RGLCommandCommandInternetSend = 300,
RGLCommandBluetoothConnect = 500,
RGLCommandBluetoothDisconnect = 501,
RGLCommandBluetoothSendData = 502,
}
Swift
enum Command : Int, @unchecked Sendable
Undocumented
-
Undocumented
Declaration
Objective-C
RGLCommandUnknown = 0Swift
case unknown = 0 -
Undocumented
Declaration
Objective-C
RGLCommandRfidSendData = 100Swift
case rfidSendData = 100 -
Undocumented
Declaration
Objective-C
RGLCommandRfidNotify = 101Swift
case rfidNotify = 101 -
Undocumented
Declaration
Objective-C
RGLCommandRfidGetDataForScenario = 102Swift
case rfidGetDataForScenario = 102 -
Undocumented
Declaration
Objective-C
RGLCommandTorchGetUVFoto = 200Swift
case torchGetUVFoto = 200 -
Undocumented
Declaration
Objective-C
RGLCommandCommandInternetSend = 300Swift
case commandInternetSend = 300 -
Undocumented
Declaration
Objective-C
RGLCommandBluetoothConnect = 500Swift
case bluetoothConnect = 500 -
Undocumented
Declaration
Objective-C
RGLCommandBluetoothDisconnect = 501Swift
case bluetoothDisconnect = 501 -
Undocumented
Declaration
Objective-C
RGLCommandBluetoothSendData = 502Swift
case bluetoothSendData = 502