Is it possible to run .NET Core on Raspberry PI?

I have managed to run .NET Core 2 app on Raspberry PI 3 with Raspbian. I have followed https://github.com/dotnet/core/blob/master/samples/RaspberryPiInstructions.md and https://github.com/dotnet/core/issues/447: On my laptop: Install .NET Core 2.0 SDK Run mkdir helloworld cd helloworld dotnet new console Edit helloworld.csproj <Project Sdk=”Microsoft.NET.Sdk”> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> <RuntimeIdentifiers>win-arm;linux-arm</RuntimeIdentifiers> </PropertyGroup> </Project> Run dotnet publish -r linux-arm On Raspberry PI … Read more

Raspberry Pi with Kinect

To answer your question, yes it is possible to get Image and depth on the raspberry pi! Here is how to. If you want to use just video (color, not depth) there is already a driver in the kernel! You can load it like this: modprobe videodev modprobe gspca_main modprobe gspca_kinect You get a new … Read more

How to run a C program with no OS on the Raspberry Pi?

Fully automated minimal bare metal blinker example Tested on Ubuntu 16.04 host, Raspberry Pi 2. https://github.com/dwelch67/raspberrypi is the most comprehensive example set I’ve seen to date (previously mentioned on this now deleted answer), but this is a minimal easy to setup hello world to get you started quickly. Usage: Insert SD card on host Make … Read more

How to disable sleeping on Raspberry pi

I installed xscreensaver sudo apt-get install xscreensaver Once installed, go to Rpi’s desktop “Menu” (left top corner) Go to preference –> screensaver. You will see a screen saver main menu. In the mode drop-down menu, select “disable screensaver” then close the window. Reboot the Raspberry PI. It should work now.

Check for internet connectivity in NodeJs

A quick and dirty way is to check if Node can resolve www.google.com: require(‘dns’).resolve(‘www.google.com’, function(err) { if (err) { console.log(“No connection”); } else { console.log(“Connected”); } }); This isn’t entire foolproof, since your RaspPi can be connected to the Internet yet unable to resolve www.google.com for some reason, and you might also want to check … Read more