Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8284ae9695 | |||
| c575f52ebb | |||
| 4d2ee85cbe | |||
| d6364fc975 | |||
| 7ff39ea252 |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -126,7 +126,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
ApiConfiguration = @{
|
ApiConfiguration = @{
|
||||||
EspConfiguration = @{
|
EspConfiguration = @{
|
||||||
InformationBoardImageUrl = "${{ vars.ESP_IMAGE_URL }}"
|
InformationBoardImageUrl = "http://server_ip:port/home/default.jpg"
|
||||||
UpdateIntervalMinutes = [int]"${{ vars.ESP_UPDATE_INTERVAL }}"
|
UpdateIntervalMinutes = [int]"${{ vars.ESP_UPDATE_INTERVAL }}"
|
||||||
BlackTextThreshold = [int]"${{ vars.ESP_BLACK_TEXT_THRESHOLD }}"
|
BlackTextThreshold = [int]"${{ vars.ESP_BLACK_TEXT_THRESHOLD }}"
|
||||||
EnableDithering = [System.Convert]::ToBoolean("${{ vars.ESP_ENABLE_DITHERING }}")
|
EnableDithering = [System.Convert]::ToBoolean("${{ vars.ESP_ENABLE_DITHERING }}")
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
namespace HomeApi.Models.Response;
|
namespace HomeApi.Models.Response;
|
||||||
|
|
||||||
public class TrafikLabsApiResponse
|
public class TrafikLabsApiResponse
|
||||||
{
|
{
|
||||||
public List<Departure> Departure { get; set; }
|
public List<Departure> Departure { get; set; }
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
// See https://aka.ms/new-console-template for more information
|
|
||||||
|
|
||||||
Console.WriteLine("Hello, World!");
|
|
||||||
16
README.md
16
README.md
@@ -1,10 +1,10 @@
|
|||||||
[](https://github.com/myxelium/homescreen "Go to GitHub repo")
|
[](https://github.com/myxelium/Wireless_Eink_HomeScreen "Go to GitHub repo")
|
||||||
[](https://github.com/myxelium/homescreen)
|
[](https://github.com/myxelium/Wireless_Eink_HomeScreen)
|
||||||
[](https://github.com/myxelium/homescreen)
|
[](https://github.com/myxelium/Wireless_Eink_HomeScreen)
|
||||||
[](https://github.com/myxelium/homescreen/releases/)
|
[](https://github.com/myxelium/Wireless_Eink_HomeScreen/releases/)
|
||||||
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
|
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
|
||||||
[](https://github.com/myxelium/homescreen/issues)
|
[](https://github.com/myxelium/Wireless_Eink_HomeScreen/issues)
|
||||||
[](https://github.com/Myxelium/HomeScreen/actions/workflows/build.yml)
|
[](https://github.com/Myxelium/Wireless_Eink_HomeScreen/actions/workflows/build.yml)
|
||||||
# What why how
|
# What why how
|
||||||
This is a project I created that pulls weather data from the internet, transforms it into custom images, and displays them on an e-ink screen powered by an ESP32.
|
This is a project I created that pulls weather data from the internet, transforms it into custom images, and displays them on an e-ink screen powered by an ESP32.
|
||||||
|
|
||||||
@@ -20,6 +20,10 @@ I wanted a low-power way to see weather information at a glance, so I built this
|
|||||||
|
|
||||||
<img width="800" height="480" alt="image" src="https://github.com/user-attachments/assets/ef5af0c6-ea3a-494d-b2af-3de6e70b3e6a" />
|
<img width="800" height="480" alt="image" src="https://github.com/user-attachments/assets/ef5af0c6-ea3a-494d-b2af-3de6e70b3e6a" />
|
||||||
|
|
||||||
|
# How do I get to use this without programming knowledge?
|
||||||
|
Check in the wiki for the guide how to get everything working!
|
||||||
|
### 😺 [Wiki Get Started Guide](https://github.com/Myxelium/Wireless_Eink_HomeScreen/wiki/)
|
||||||
|
|
||||||
## Git Notes
|
## Git Notes
|
||||||
All commits has to follow this [Conventional Commits style](https://www.conventionalcommits.org/) to pass the pipeline.
|
All commits has to follow this [Conventional Commits style](https://www.conventionalcommits.org/) to pass the pipeline.
|
||||||
## Features 😺
|
## Features 😺
|
||||||
|
|||||||
Reference in New Issue
Block a user