mirror of
https://github.com/skoelle/m5stack-dashboard.git
synced 2026-09-17 16:50:23 +00:00
LICENSE
This commit is contained in:
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -84,3 +84,7 @@ gelangt.
|
|||||||
|
|
||||||
Noch nicht initialisiert. Bei Bedarf: `git init && git add . && git commit -m "Initial"`.
|
Noch nicht initialisiert. Bei Bedarf: `git init && git add . && git commit -m "Initial"`.
|
||||||
`include/secrets.h` und `.venv-platformio/` sind bereits in `.gitignore`.
|
`include/secrets.h` und `.venv-platformio/` sind bereits in `.gitignore`.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Licensed under the [MIT License](LICENSE) - Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de)
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
VENV_DIR=".venv-platformio"
|
VENV_DIR=".venv-platformio"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
VENV_DIR=".venv-platformio"
|
VENV_DIR=".venv-platformio"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "calendar_api.h"
|
#include "calendar_api.h"
|
||||||
#include "http_client.h"
|
#include "http_client.h"
|
||||||
#include "../../include/secrets.h"
|
#include "../../include/secrets.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "departures_api.h"
|
#include "departures_api.h"
|
||||||
#include "http_client.h"
|
#include "http_client.h"
|
||||||
#include "../../include/secrets.h"
|
#include "../../include/secrets.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "http_client.h"
|
#include "http_client.h"
|
||||||
#include <HTTPClient.h>
|
#include <HTTPClient.h>
|
||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "weather_api.h"
|
#include "weather_api.h"
|
||||||
#include "http_client.h"
|
#include "http_client.h"
|
||||||
#include "../../include/secrets.h"
|
#include "../../include/secrets.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include "theme.h"
|
#include "theme.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#include "../include/secrets.h"
|
#include "../include/secrets.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "calendar_detail_screen.h"
|
#include "calendar_detail_screen.h"
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include "../../include/theme.h"
|
#include "../../include/theme.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
void renderCalendarDetailScreen(bool forceRefresh = false);
|
void renderCalendarDetailScreen(bool forceRefresh = false);
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "home_screen.h"
|
#include "home_screen.h"
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include "../../include/theme.h"
|
#include "../../include/theme.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
void renderHomeScreen(bool forceRefresh = false);
|
void renderHomeScreen(bool forceRefresh = false);
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "mvg_screen.h"
|
#include "mvg_screen.h"
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include "../../include/theme.h"
|
#include "../../include/theme.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
void renderMvgScreen(bool forceRefresh = false);
|
void renderMvgScreen(bool forceRefresh = false);
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
enum class ScreenId {
|
enum class ScreenId {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#include "weather_detail_screen.h"
|
#include "weather_detail_screen.h"
|
||||||
#include <M5Stack.h>
|
#include <M5Stack.h>
|
||||||
#include "../../include/theme.h"
|
#include "../../include/theme.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
void renderWeatherDetailScreen(bool forceRefresh = false);
|
void renderWeatherDetailScreen(bool forceRefresh = false);
|
||||||
|
|||||||
Reference in New Issue
Block a user