14 Commits

Author SHA1 Message Date
661fe4dfd6 fix: release address 2025-07-20 18:56:02 +02:00
0207899f1b fix: broken path v2 2025-07-20 18:51:16 +02:00
359a1359f5 fix: broken path v2 2025-07-20 18:49:56 +02:00
62fbdf3d5a fix: broken path 2025-07-20 18:47:19 +02:00
ec02f17089 fix: compression 2025-07-20 18:44:30 +02:00
a164c0059b Update README.md 2025-07-20 18:40:49 +02:00
a45f60c09e fix: Update build.yml 2025-07-20 18:39:26 +02:00
93ad7ba411 fix: Added 7z 2025-07-20 18:36:07 +02:00
Myx
592b44ee43 fix: Test pipeline 2025-07-20 18:22:24 +02:00
1f78fedcb3 Update build.yml 2025-07-20 18:13:21 +02:00
Myx
58858700d9 fix: readme had not proper content
Everyone should be happy now!
2025-07-20 17:57:43 +02:00
2c86c7741d Update README.md 2025-07-20 17:50:17 +02:00
fc52024d5a Update README.md 2025-07-20 17:49:03 +02:00
d768b8ae3f More info (#3) 2025-07-20 17:47:54 +02:00
7 changed files with 149 additions and 11 deletions

View File

@@ -81,11 +81,13 @@ jobs:
uses: ietf-tools/semver-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: master
patchAll: true # Always increment patch number
branch: master # ← change to "main" if that's your default
patchAll: true
# fallbackTag: v0.0.1 # ← optionally bootstrap from an existing tag
- name: Create GitHub Release
if: ${{ github.event.inputs.create_release != 'false' }}
id: create_release # ← this is required
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -95,6 +97,25 @@ jobs:
draft: false
prerelease: false
- name: Zip the build for GitHub Release
if: ${{ github.event.inputs.create_release != 'false' }}
run: |
Compress-Archive \
-Path './output/*' \
-DestinationPath "./output/HomeScreen_Build_${{ steps.semver.outputs.next }}.zip" \
-CompressionLevel Optimal -Force
- name: Upload Release Asset
if: ${{ github.event.inputs.create_release != 'false' }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # ← now available
asset_path: ./output/HomeScreen_Build_${{ steps.semver.outputs.next }}.zip
asset_name: HomeScreen_Build_${{ steps.semver.outputs.next }}.zip
asset_content_type: application/zip
- name: Generate appsettings.json
run: |
$appSettings = @{

View File

@@ -7,6 +7,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HomeApi", "HomeApi\HomeApi.csproj", "{0F340BDE-7B8E-4ACD-8A24-5B5BFFB424F4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ESP32_CODE", "ESP32_CODE", "{B3BCE85B-5021-4D4D-8758-CA7AAFF86C2D}"
ProjectSection(SolutionItems) = preProject
Esp32_Code\ESPSCREEN\ESPSCREEN.ino = Esp32_Code\ESPSCREEN\ESPSCREEN.ino
Esp32_Code\INFOSCREEN_WITH_INTERVAL\INFOSCREEN_WITH_INTERVAL.ino = Esp32_Code\INFOSCREEN_WITH_INTERVAL\INFOSCREEN_WITH_INTERVAL.ino
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -20,5 +26,6 @@ Global
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{0F340BDE-7B8E-4ACD-8A24-5B5BFFB424F4} = {FF03E920-D5E9-4BE0-AA6F-DB2E9287D3E4}
{B3BCE85B-5021-4D4D-8758-CA7AAFF86C2D} = {FF03E920-D5E9-4BE0-AA6F-DB2E9287D3E4}
EndGlobalSection
EndGlobal

View File

@@ -20,6 +20,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="..\README.md" />
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>

107
README.md
View File

@@ -2,3 +2,110 @@
Core api and Esp32 code for displaying weather data and public transport information on a e-ink display.
<img width="800" height="480" alt="image" src="https://github.com/user-attachments/assets/ef5af0c6-ea3a-494d-b2af-3de6e70b3e6a" />
## Git Notes
All commits has to follow this [Conventional Commits style](https://www.conventionalcommits.org/) to pass the pipeline.
## Features 😺
- Display current weather data
- Display public transport information
- Display time and date
## Requirements 🫥
- ESP32 board
- E-ink display (e.g. Waveshare 7.5 inch)
# Installation
This section provides instructions for setting up and running the HomeApi project.
## Prerequisites
- [.NET 9.0 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) or later
- Docker (optional, for containerized deployment)
- Git (to clone the repository)
## Option 1: Local Development Setup
1. Clone the repository:
```bash
git clone https://github.com/Myxelium/HomeScreen.git
cd HomeApi
```
2. Restore dependencies:
```bash
dotnet restore
```
3. Build the project:
```bash
dotnet build
```
4. Run the application:
```bash
dotnet run
```
The API will be available at `http://localhost:5000`.
## Option 2: Docker Deployment
1. Build the Docker image:
```bash
docker build -t homeapi .
```
2. Run the container:
```bash
docker run -d -p 5000 --name homeapi homeapi
```
The API will be accessible at `http://localhost:5000`.
## Configuration
The application uses the standard .NET configuration system. You can modify settings in:
- `appsettings.json` - Default configuration
- `appsettings.Development.json` - Development environment configuration
API endpoints:
- Weather data: GET `/home`
- Generated image: GET `/home/default.jpg`
- Configuration data: GET `/home/configuration`
- Departure board: GET `/home/departure-board`
## API Documentation
When running, API documentation is available through Scalar at `/scalar`.
```mermaid
flowchart TD
subgraph ESP32 Device
ESP[ESP32 E-Ink Display]
ESP -->|HTTP GET /home/configuration| API
ESP -->|HTTP GET /home/default.jpg| API
end
subgraph HomeApi
API[HomeControllerAPI]
API -->|MediatR| Handlers
Handlers -->|Service Calls| Services
Services -->|Refit Clients| Clients
Clients -->|External APIs| ExtAPIs
API -->|Returns JSON/JPEG| ESP
end
subgraph ExternalAPIs
WeatherAPI[Weather API]
AuroraAPI[Aurora API]
NominatimAPI[Nominatim API]
ResRobotAPI[ResRobot API]
end
ExtAPIs -.-> WeatherAPI
ExtAPIs -.-> AuroraAPI
ExtAPIs -.-> NominatimAPI
ExtAPIs -.-> ResRobotAPI
```

View File

@@ -1,13 +1,15 @@
services:
homeapi:
image: homeapi
build:
context: .
dockerfile: Dockerfile
version: '3.8'
homeapi-1:
image: homeapi-1
services:
homeapi:
build:
context: .
dockerfile: HomeApi/Dockerfile
image: homeapi:latest
ports:
- "5000:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ./HomeApi/appsettings.Development.json:/app/appsettings.Development.json:ro
restart: unless-stopped