Tachyon Events and Sensors

Hey Guys,

I’ve been trying to search documentation about the Tachyon way to publish events and update sensors in particle console. I didn’t find any references about it.

Should it be done via API/Webhooks or is there any simpler way to do it like we to in all particle devices (like argon, etc… publish…)?

Thanks in advance,

Pedro

Start here for Particle applications on Linux.

You can also just access the Particle REST API from Tachyon from Python, node.js, etc..

Particle CLI is installed on the Tachyon. You can publish and subscribe from the command prompt.

particle subscribe YourEvent
Subscribing to "YourEvent" from my devices {"data":"green","ttl":60,"published_at":"2025-12-10T00:42:29.806Z","coreid":"api","name":"YourEvent"}
{"data":"green","ttl":60,"published_at":"2025-12-10T00:44:30.227Z","coreid":"api","name":"YourEvent"}
{"data":"magenta","ttl":60,"published_at":"2025-12-10T00:44:50.777Z","coreid":"api","name":"YourEvent"}
{"data":"pizza","ttl":60,"published_at":"2025-12-10T00:45:14.667Z","coreid":"api","name":"YourEvent"}
{"data":"magenta","ttl":60,"published_at":"2025-12-10T00:45:48.734Z","coreid":"api","name":"YourEvent"}

You can pipe the output to a file

particle subscribe YourEvent > event.json

and monitor it with tail -f, that will give you the added line(s) when events are published.

Not quite what you can do with the firmware, but maybe you can work with it.