From 2a56faa1d1ae622e02adbf2b2c40106b18c00ae5 Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Sat, 27 Jun 2026 23:02:39 +0200 Subject: [PATCH] fix homeassitant api endpoint --- src/api/homeAssistant.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/homeAssistant.ts b/src/api/homeAssistant.ts index 36639ad..a7001bc 100644 --- a/src/api/homeAssistant.ts +++ b/src/api/homeAssistant.ts @@ -7,7 +7,7 @@ async function fetchTentHumidity() { return; } - const url = `https://home.rivercry.com/api/states/sensor.third_reality_inc_3rths0224z_luftfeuchtigkeit_2`; + const url = `https://home.rivercry.com/api/states/sensor.zelt_humidity`; const response = await fetch(url, { method: "GET", headers: { @@ -26,7 +26,7 @@ async function fetchTentTemperature() { return; } - const url = `https://home.rivercry.com/api/states/sensor.third_reality_inc_3rths0224z_temperatur_2`; + const url = `https://home.rivercry.com/api/states/sensor.zelt_temperature`; const response = await fetch(url, { method: "GET", headers: {