Skip to content

a picture frame app for a Raspberry Pi using .NET 6 and Avalonia

License

Notifications You must be signed in to change notification settings

DrNeil/dotnetPiPictureFrame

Repository files navigation

.NET Pi PictureFrame

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

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";
}

The Hardware

A Guide to building the Raspberry Pi Picture frame can be found here Pi Picture Frame

About

a picture frame app for a Raspberry Pi using .NET 6 and Avalonia

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages