Get SteamVR device information for tracked devices in Unity

1.4k Views Asked by At

Dear SteamVR and Unity Community,

I have searched now a lot how I can receive information about tracked devices in Unity but it seems this is insufficiently documented or just not possible except of some exceptions like the device type.

I'm using SteamVR 2.6.1 and Unity 2019.4.8 and I would like to get either the name of my tracked device or in case it is a Lighthouse, I would like to get the channel on which the Lighthouse is working.

Is there any chance to get for example all the information that the SteamVR system report generates also via API?

Best.

2

There are 2 best solutions below

2
On BEST ANSWER

At least I found a solution to get the device id which is unique and can be used for identification of a lighthouse:

var id = new System.Text.StringBuilder(64);
OpenVR.System.GetStringTrackedDeviceProperty((uint)i, ETrackedDeviceProperty.Prop_RenderModelName_String, id, 64, ref error);
Debug.Log(id);

where i is the number of the tracked device.

0
On

SteamVR has a function UpdateModel() in SteamVR_RenderModel, which determines the controller and updates the model in-game. I copied and modified as follow:

        public string GetDeviceProperty(int index)
        {
            var system = OpenVR.System;
            if (system == null || index < 0) {
                return null;
            }

            var error = ETrackedPropertyError.TrackedProp_Success;
            uint capacity = system.GetStringTrackedDeviceProperty((uint) index, ETrackedDeviceProperty.Prop_RenderModelName_String, null, 0, ref error);
            if (capacity <= 1) {
                _logger.Verbose("Failed to get render model name for tracked object {index}", index);
                return null;
            }

            var buffer = new System.Text.StringBuilder((int) capacity);
            system.GetStringTrackedDeviceProperty((uint) index, ETrackedDeviceProperty.Prop_RenderModelName_String, buffer, capacity, ref error);

            return buffer.ToString();
        }

This returns a string for the given index.