Add project files.

This commit is contained in:
2026-08-07 16:05:32 +01:00
parent a9084c7305
commit 6fac7e2127
5 changed files with 159 additions and 0 deletions

13
Program.cs Normal file
View File

@@ -0,0 +1,13 @@
var renderer = new MatrixRenderer("192.168.0.150"); // Replace with WLED IP
while (true)
{
// TODO: Query InfluxDB for your BME680 data here
float bme680Temp = 22.5f;
await renderer.DrawAndSendFrameAsync(bme680Temp);
// Update screen at 30 FPS for smooth transitions,
// or every 5 seconds if just showing static data.
await Task.Delay(1000 / 30);
}