namespace Unity.XR.PICO.TOBSupport { public enum SystemInfoEnum { /// /// Check the battery level. /// ELECTRIC_QUANTITY = 0, /// /// Check the PUI version number. /// PUI_VERSION = 1, /// /// Check the device model. /// EQUIPMENT_MODEL = 2, /// /// Check the device serial number (SN). /// EQUIPMENT_SN = 3, /// /// Check the customer serial number (SN). /// CUSTOMER_SN = 4, /// /// Check the internal storage space of the device. /// INTERNAL_STORAGE_SPACE_OF_THE_DEVICE = 5, /// /// Check the Bluetooth status of the device. /// DEVICE_BLUETOOTH_STATUS = 6, /// /// Check the name of the connected Bluetooth device. /// BLUETOOTH_NAME_CONNECTED = 7, /// /// Check the Bluetooth MAC address. /// BLUETOOTH_MAC_ADDRESS = 8, /// /// Check the Wi-Fi status of the device. /// DEVICE_WIFI_STATUS = 9, /// /// Check the name of the connected Wi-Fi network. /// WIFI_NAME_CONNECTED = 10, /// /// Check the WLAN MAC address. /// WLAN_MAC_ADDRESS = 11, /// /// Check the device IP address. /// DEVICE_IP = 12, /// /// Check if the device is charging. /// CHARGING_STATUS = 13, /// /// Neo3 device old and new keys. /// DEVICE_KEY = 14, /// /// Bluetooth information of the device itself. /// Return value format: Name|Address /// Return value example: PICO 4|08:16:D5:70:20:11 /// BLUETOOTH_INFO_DEVICE = 15, /// /// Information of the connected Bluetooth devices. /// Return value format: [Bluetooth device 1 name|Bluetooth device 1 address, Bluetooth device 2 name|Bluetooth device 2 address, ...] /// Return value example: [PICO 4|08:16:D5:70:20:11, PICO Neo 3|21:23:D5:7A:2C:DE] /// BLUETOOTH_INFO_CONNECTED = 16, /// /// Camera temperature in Celsius. /// CAMERA_TEMPERATURE_CELSIUS = 17, /// /// Camera temperature in Fahrenheit. /// CAMERA_TEMPERATURE_FAHRENHEIT = 18, /// /// Large space map information. /// LARGESPACE_MAP_INFO = 19, /// /// Current charging protocol. /// CURRENT_CHARGING_PROTOCOL = 20, /// /// Maximum USB charging power. /// USB_PWOER_MAX = 21, /// /// Head-mounted display (HMD) position and orientation. /// HMD_POSITION_AND_ORIENTATION = 22, /// /// the status of PSensor /// PSENSOR_STATUS = 23, /// /// the scale of the large-space map /// LARGE_SPACE_MAP_SCALE = 24 } }