LED Ring
Homey's LED ring consists of 24 RGB LED's that apps can control and supply new animations for.
Playing a LED Ring animation
const Homey = require('homey');
class App extends Homey.App {
async onInit() {
const pulseAnimation = await this.homey.ledring.createSystemAnimation("pulse");
await pulseAnimation.start();
}
}
module.exports = App;Creating your own LED Ring animation
Screensaver
Last updated
Was this helpful?