Skip to main content

[IoT Home Project] Part 2 - Visual Studio Code and the first node.js app

Previous post: http://vunvulearadu.blogspot.ro/2016/12/iot-home-project-part-1-initial-setup.html

In this post we will take a look on the initial setup of Raspberry PI, GrovePI and a sample code that helps us to check if node.js and GrovePI works as expected. Before we talk about the initial setup of the device.

Useful tools for Raspberry PI
I recommend to start with a fresh installation of OS. You can download the OS image from https://www.raspberrypi.org/downloads/. I am a big fun of NOOBS, but feel free to use other versions of OS. To write the image on the memory stick you can use Win32 Disk Imager. A basic tools that do his job.

Once you wrote the image on a stick, don't forget to connect it to a monitor and activate SSH. By default SSH is disabled. You can do this from the console, but you can use raspi-config, a nice tools that allow you to do different configurations on your device
sudo raspi-config 
The SSH options is under 'Advanced Options'. From this tool, you can activate also VNC. A restart is needed after you do this change.
For VNC, the default resolution is not very high. This can be solved easilty if you run:
vncserver -geometry 1600x1200 -randr 1600x1200,1440x900,1024x768
From now, you can access your device using VNC Client or Putty. Default user is 'pi' and the default password is 'raspberry'.
The last tool that you should run is PI Finder. This tool will install the base packages, like node, vim, git and so on. It has a nice UI and it will search automatically for the raspberry in your private network. The default name of the raspberry is 'raspberrypi'.
Why I like at this tools is that it creates a file that can be accessed from PC or from any card reader where you can specify the WiFi SSI name and password. This is very useful when you end-up in a location where you don't have a network cable but you know WiFI password and name.
# hostname for your Raspberry Pi:
hostname=raspberryPI

# basic wireless networking options:
wifi_ssid=vunvuleawifi
wifi_password=radusecret

Visual Studio Code on Raspberry
In the last post I show you how you can compile your own version of Visual Studio Code. The good think is that others already done this. Headmelted offer us the package ready to be installed on our device. Thank you for that!
Once you downloaded and installed Visual Studio Code Package, the only think that you need to do is to run 'code-oss'

Initial Test Code
The code that I used for tests can be found on GitHub. Before running the code, froma shell, you need to run the below command that will install the GrovePI node package.
npm install node-grovepi
Once you done, you'll need to connect the humidity and temperature sensor on port D1 and the LCD on I2C 2. Now you are ready to run the code.
If in the future we will play more with the LCD, I promise that I will write a module for node that will help us to communicate with the LCD.

What's next?
The next step is to connect also others sensors for Raspberry PI and read all the data.

Next post: http://vunvulearadu.blogspot.ro/2016/12/iot-home-project-part-3-nodejs-module.html

Comments

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(

Azure AD and AWS Cognito side-by-side

In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded

Today blog post will be started with the following error when running DB tests on the CI machine: threw exception: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. at System.Data.Entity.Infrastructure.DependencyResolution.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName) This error happened only on the Continuous Integration machine. On the devs machines, everything has fine. The classic problem – on my machine it’s working. The CI has the following configuration: TeamCity .NET 4.51 EF 6.0.2 VS2013 It see