A picture frame app for a Raspberry Pi using .NET 6 and Avalonia.
This project is a combination of the Notes made on building applications on a Raspberry Pi with .NET 6. These include the following Notes
- .NET development on a Raspberry Pi
- .NET Console Clock
- .NET Console Weather
- .NET GUI application on Raspberry Pi with Avalonia
- .NET Picture Frame on Raspberry Pi with Avalonia
All the values needed to run this in your environment are coded into the Config.cs class file.
The Config class contains
- An OpenWeather key
- A city for which to retrieve the weather
- A folder with photos to display
internal static class Config
{
internal const string OpenWeather = "your open weather key";
internal const string WeatherCity = "Sydeny, NSW";
internal const string PhotosFolder = @"folder to your photos";
}
A Guide to building the Raspberry Pi Picture frame can be found here