Roy
Windows 10 IoT
Now that the .NET Core 2.0 preview is out, I may try my hand at running under raspbian and creating the necessary PInvoke bindings for the ARM .so files.
But would still rather have the native Windows 10 IoT SDK.
Roy
RoySalisbury wrote:Now that the .NET Core 2.0 preview is out, I may try my hand at running under raspbian and creating the necessary PInvoke bindings for the ARM .so files.
Just a quick update. I got this to work. .NET Core 2.0 app invoking the API by importing the .so file.
class Program {
private static extern int ASIGetNumOfConnectedCameras();
static void Main(string args)
{
var x = ASIGetNumOfConnectedCameras();
Console.WriteLine(x);
}
}
Next step is to get it to take an image and then expose that via a REST API.
Roy
Hi!
is there any progress on the .NET Core side? I planned to use a Raspberry with Windows 10 Core to control my ZWO camera.
Best regards Martin
albusmw If runs the program on Win10, I think the SDK c++ API is available.