Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.52 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.52 KB

.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