I have a NETCORE 2 app that I'm attempting to run under Mono 6.10 on a Raspberry Pi Zero W. I'm using version 0.27 of Unosquare.Raspberry.IO, 0.5 of Unosquare.RaspberryIO.Peripherals and 0.5 of Unosquare.WiringPi I have the following code:
Pi.Init<BootstrapWiringPi>();
Console.WriteLine(Pi.Info.ToString());
var ledStrip = new LedStripAPA102C(4 * 8, 1, 1000000);
The init appears to work fine, and the Info prints out the following:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I have a NETCORE 2 app that I'm attempting to run under Mono 6.10 on a Raspberry Pi Zero W. I'm using version 0.27 of
Unosquare.Raspberry.IO
, 0.5 ofUnosquare.RaspberryIO.Peripherals
and 0.5 ofUnosquare.WiringPi
I have the following code:The init appears to work fine, and the Info prints out the following:
The line to initiate the
LedStripAPA102C
prints the followingThe hardware that I'm using is a Unicorn phat
I have enabled the I2C and SPI Kernel modules, and verified that they are running with lsmod
The Kernel version is
4.19.118+
and it's a relatively fresh install of buster. I have not runrpi-update
I'm all out of ideas so would appreciate any pointers in the right direction