ホーム › Devices.Sensors › SENSOR_CONNECTION_TYPES
SENSOR_CONNECTION_TYPES
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| SensorConnectionType_Integrated | 0 | 0x0 |
| SensorConnectionType_Attached | 1 | 0x1 |
| SensorConnectionType_External | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SENSOR_CONNECTION_TYPES : int {
SensorConnectionType_Integrated = 0,
SensorConnectionType_Attached = 1,
SensorConnectionType_External = 2
} SENSOR_CONNECTION_TYPES;public enum SENSOR_CONNECTION_TYPES : int
{
SensorConnectionType_Integrated = 0,
SensorConnectionType_Attached = 1,
SensorConnectionType_External = 2,
}Public Enum SENSOR_CONNECTION_TYPES As Integer
SensorConnectionType_Integrated = 0
SensorConnectionType_Attached = 1
SensorConnectionType_External = 2
End Enumimport enum
class SENSOR_CONNECTION_TYPES(enum.IntEnum):
SensorConnectionType_Integrated = 0
SensorConnectionType_Attached = 1
SensorConnectionType_External = 2// SENSOR_CONNECTION_TYPES
pub const SensorConnectionType_Integrated: i32 = 0;
pub const SensorConnectionType_Attached: i32 = 1;
pub const SensorConnectionType_External: i32 = 2;// SENSOR_CONNECTION_TYPES
const (
SensorConnectionType_Integrated int32 = 0
SensorConnectionType_Attached int32 = 1
SensorConnectionType_External int32 = 2
)const
SensorConnectionType_Integrated = 0;
SensorConnectionType_Attached = 1;
SensorConnectionType_External = 2;// SENSOR_CONNECTION_TYPES
pub const SensorConnectionType_Integrated: i32 = 0;
pub const SensorConnectionType_Attached: i32 = 1;
pub const SensorConnectionType_External: i32 = 2;const
SensorConnectionType_Integrated* = 0
SensorConnectionType_Attached* = 1
SensorConnectionType_External* = 2enum SENSOR_CONNECTION_TYPES : int {
SensorConnectionType_Integrated = 0,
SensorConnectionType_Attached = 1,
SensorConnectionType_External = 2,
}#define global SensorConnectionType_Integrated 0x0
#define global SensorConnectionType_Attached 0x1
#define global SensorConnectionType_External 0x2