From bcaa97e7e2e733a2e0ebbd953d8225e494683d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20CHOMAZ?= Date: Sun, 8 Feb 2026 16:35:36 +0100 Subject: [PATCH] =?UTF-8?q?feat(MQTTPublisher):=20Mise=20=C3=A0=20jour=20l?= =?UTF-8?q?iste=20topics=20WLED?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Correction format topics (suppression slash initial) - Ajout topics spécifiques couleur (wled/all/col, wled/panel/col) --- VApp/src/components/MQTTColorPublisher.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/VApp/src/components/MQTTColorPublisher.vue b/VApp/src/components/MQTTColorPublisher.vue index b246e36d..1bf6b7db 100644 --- a/VApp/src/components/MQTTColorPublisher.vue +++ b/VApp/src/components/MQTTColorPublisher.vue @@ -53,12 +53,12 @@ import { publishMessage } from '@/services/mqttService'; const selectedTopic = ref('Selectionnez un topic'); const selectedColor = ref('#FF0000'); const topics = ref([ - '/wled/all', - '/wled/1', - '/wled/2', - '/wled/3', - '/wled/4', - '/wled/5', + 'wled/all/col', + 'wled/panel/col', + 'wled/2', + 'wled/3', + 'wled/4', + 'wled/5', ]); const publishCustomColor = () => {