RNBO accelerometer listener
Experimenting with the accelerometer, wanting to map x, y, and z to param changes.
(Here is the experiment: http://5.181.218.52/Comb/)
I'd like to map the three parameters to the accelerometer axes, but I'm a JS novice. I have the following accelerometer code in the setup() function
if ('Accelerometer' in window) {
const accelerometer = new Accelerometer({ frequency: 60 });
accelerometer.addEventListener('reading', () => {
ax = accelerometer.x;
ay = accelerometer.y;
az = accelerometer.z;
});
accelerometer.addEventListener('error', (event) => {
console.error('Accelerometer error:', event);
});
accelerometer.start();
} else {
console.error('Accelerometer API is not supported in this browser.');
}
Now, I'm not sure how to bind this to the three parameters currently controlled by the (boilerplate) slider code.
Any advice would be appreciated!
TIA
Mike
Hi Mike,
if you look here in the example code you see how the parameter value is updated:
For a bit more context I'd recommend the guides on how to work with the RNBO JavaScript API in the browser: https://rnbo.cycling74.com/learn/getting-and-setting-parameters-js
Hope that helps.
Hi Florian,
Thanks for the response. Over the weekend I was able to bind everything and get things working, though it's a pain to debug in iOS!
Mike