Merry Christmas from AbleSet!

CleanShot 2025-12-24 at 17.23.51

I might not respond to posts as quickly as usual over the next few days, but will still check the forum and mails every now and then.

Here’s the canvas I used to create this animation: Merry Christmas.json (13.7 KB)

And here’s the project script that makes it blink:

// Changes between red and green every 500ms
while (true) {
  setShared("green", !shared("green"));
  await sleep(500);
}

// Or, if you'd like to sync it to the beat
onOscChange("/global/beatsPosition", ([beats]) => {
  setShared("green", Number(beats) % 2 === 0);
}, true);

I hope you all are enjoying the holidays! :slight_smile:

5 Likes


Just finish a show with ableset beta24, Nice and smooth,Thanks Leo!MerryXmas!

2 Likes