FluxyChat

How-to Guides

IoT telemetry starter

Nexora-style: one channel for device readings (PH-122).

IoT telemetry in ~20 lines

Post device readings as room messages or server events.

const client = new FluxyChatClient({ workerUrl, token });

setInterval(async () => {
  const reading = await readSensor();
  await client.createMessage("nexora-floor", JSON.stringify(reading), {
    visibility: "room",
  });
}, 5000);

Or ingest via FluxyIoT bridge → POST /rooms/{id}/events with name: "telemetry.sample".

Dashboard: IoT vertical for device registry and live charts.

On this page