.net core and hats

Hi All,

I have been thinking of writing some projects using .net core on the pi lately and have been mulling over what the best way to interface with hats would be.

I could port the code for the hats from python to .net core which I would love to do if I get the time.

Other thoughts are invoking python from .net core or using a database / files to update data to pass to python scripts.

Has anyone played about with .net core on the raspberry pi yet and have any experience on an ideal way to go about this kind of thing?

Thanks,

Shane

Hi Kenjara,

I know this has come quite late but thought I would add it here anyway for anyone who lands here like me. Microsoft have got the System.Device.Gpio library to control the gpio pins on the Pi here GitHub - dotnet/iot: This repo includes .NET Core implementations for various IoT boards, chips, displays and PCBs.. There are also IoT bindings specifically targeting certain hardware you can buy from Pimoroni. Both the above work for anything .NET Standard 2.0, Net Core 3.1 & NET 6.0

There’s also the .NET Nanoframework for the Pico

Hope this is helpful to someone