Sending gyro data

Hi,

Thanks for the great tool!

I’ve been trying to send gyro data from mobile but I’m not having much luck. Should it be as simple as adding a gyroscope widget, or am I missing something? all other widget values are sending as expected.

I’ve tried on an iPhone8 plus and a Galaxy S7 running in both safari and chrome.

Thanks,

Harvey

The gyroscope widget itself doesn’t send osc messages (I’ll mention in the docs), but you can retrieve its value in another widget that does, for instance you can create an input widget and set its value property as follows:

JS{{
var data = @{gyroscope_id}
return data.do.beta
}}

See gyroscope#value

That’s working a treat.

Thanks!