From 60cfdcefc1b579cef2018c334932d5a61a37b6a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 25 Mar 2021 08:07:57 +0100 Subject: [PATCH 1/3] give the project a proper name (and license) --- FINAL2013V2.ino => PanikSwitch.ino | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) rename FINAL2013V2.ino => PanikSwitch.ino (93%) diff --git a/FINAL2013V2.ino b/PanikSwitch.ino similarity index 93% rename from FINAL2013V2.ino rename to PanikSwitch.ino index c9f3829..8c92cb1 100644 --- a/FINAL2013V2.ino +++ b/PanikSwitch.ino @@ -1,4 +1,20 @@ -// Panik Web Form Demo +/* + * PanikSwitch + * Copyright (C) 2021-2021 Radio Panik + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ #define SERIAL_DEBUG #define ENABLE_UDP -- 2.39.2 From e40c4a222952330a46210cacf3cc68266029d214 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 8 Aug 2022 11:21:21 +0200 Subject: [PATCH 2/3] update UDP messages target IP --- PanikSwitch.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PanikSwitch.ino b/PanikSwitch.ino index 8c92cb1..2fa0118 100644 --- a/PanikSwitch.ino +++ b/PanikSwitch.ino @@ -118,7 +118,7 @@ WebServer webserver(PREFIX, 80); #ifdef ENABLE_UDP // and EthernetUDP instance to send notifications EthernetUDP Udp; -IPAddress udp_remote_ip(192, 168, 17, 224); +IPAddress udp_remote_ip(192, 168, 17, 246); #endif -- 2.39.2 From fe409ea8cb62449cd6419b1406f63332f8e3e062 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 17 Oct 2023 07:02:27 +0200 Subject: [PATCH 3/3] do not load unused SD library --- PanikSwitch.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/PanikSwitch.ino b/PanikSwitch.ino index 2fa0118..95e4ee8 100644 --- a/PanikSwitch.ino +++ b/PanikSwitch.ino @@ -29,7 +29,6 @@ // include Arduino libraries #include #include -#include #include #ifdef ENABLE_UDP #include -- 2.39.2