added license

This commit is contained in:
2026-08-04 19:01:20 +02:00
parent d5c0bf0394
commit debec81c48
35 changed files with 60 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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.
+4
View File
@@ -135,3 +135,7 @@ Icons werden prozedural als LVGL-Canvas-Objekte gezeichnet (keine externen Bitma
## Referenzprojekt ## Referenzprojekt
Vorgängerprojekt mit M5Stack Core: <https://github.com/skoelle/m5stack-dashboard> Vorgängerprojekt mit M5Stack Core: <https://github.com/skoelle/m5stack-dashboard>
## Lizenz
Dieses Projekt steht unter der [MIT-Lizenz](LICENSE).
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
// WT32-SC01 Plus pin assignments (ESP32-S3, ST7796 8-bit parallel, FT6336U touch). // WT32-SC01 Plus pin assignments (ESP32-S3, ST7796 8-bit parallel, FT6336U touch).
+1
View File
@@ -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
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
/** /**
* @file lv_conf.h * @file lv_conf.h
* Configuration file for v9.5.0 * Configuration file for v9.5.0
+1
View File
@@ -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
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include <lvgl.h> #include <lvgl.h>
+1
View File
@@ -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 <secrets.h> #include <secrets.h>
+1
View File
@@ -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
View File
@@ -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 <secrets.h> #include <secrets.h>
+1
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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 <secrets.h> #include <secrets.h>
+1
View File
@@ -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
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "data_manager.h" #include "data_manager.h"
#include <freertos/FreeRTOS.h> #include <freertos/FreeRTOS.h>
#include <freertos/task.h> #include <freertos/task.h>
+1
View File
@@ -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 "api/weather_api.h" #include "api/weather_api.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "display_setup.h" #include "display_setup.h"
#include <LovyanGFX.hpp> #include <LovyanGFX.hpp>
#include <driver/i2c.h> #include <driver/i2c.h>
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include <lvgl.h> #include <lvgl.h>
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "icons.h" #include "icons.h"
#include <math.h> #include <math.h>
+1
View File
@@ -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 <lvgl.h> #include <lvgl.h>
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include <Arduino.h> #include <Arduino.h>
#include <WiFi.h> #include <WiFi.h>
#include <lvgl.h> #include <lvgl.h>
+1
View File
@@ -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 "ui/widgets/back_button.h" #include "ui/widgets/back_button.h"
#include "data/data_manager.h" #include "data/data_manager.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include "ui/screen_base.h" #include "ui/screen_base.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "home_screen.h" #include "home_screen.h"
#include "ui/widgets/tile_button.h" #include "ui/widgets/tile_button.h"
#include "icons/icons.h" #include "icons/icons.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include "ui/screen_base.h" #include "ui/screen_base.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "mvg_screen.h" #include "mvg_screen.h"
#include "ui/widgets/back_button.h" #include "ui/widgets/back_button.h"
#include "api/departures_api.h" #include "api/departures_api.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include "ui/screen_base.h" #include "ui/screen_base.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include <lvgl.h> #include <lvgl.h>
+1
View File
@@ -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 "ui/widgets/back_button.h" #include "ui/widgets/back_button.h"
#include "data/data_manager.h" #include "data/data_manager.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include "ui/screen_base.h" #include "ui/screen_base.h"
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "back_button.h" #include "back_button.h"
#include <theme.h> #include <theme.h>
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include <lvgl.h> #include <lvgl.h>
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#include "tile_button.h" #include "tile_button.h"
TileButton tile_button_create(lv_obj_t *parent, lv_coord_t x, lv_coord_t y, TileButton tile_button_create(lv_obj_t *parent, lv_coord_t x, lv_coord_t y,
+1
View File
@@ -1,3 +1,4 @@
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once #pragma once
#include <lvgl.h> #include <lvgl.h>
#include <theme.h> #include <theme.h>