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

Why Database Modernization Matters for AI

  When companies transition to the cloud, they typically begin with applications and virtual machines, which is often the easier part of the process. The actual complexity arises later when databases are moved. To save time and effort, cloud adoption is more of a cloud migration in an IaaS manner, fulfilling current, but not future needs. Even organisations that are already in the cloud find that their databases, although “migrated,” are not genuinely modernised. This disparity becomes particularly evident when they begin to explore AI technologies. Understanding Modernisation Beyond Migration Database modernisation is distinct from merely relocating an outdated database to Azure. It's about making your data layer ready for future needs, like automation, real-time analytics, and AI capabilities. AI needs high throughput, which can be achieved using native DB cloud capabilities. When your database runs in a traditional setup (even hosted in the cloud), in that case, you will enc...

Cloud Myths: Migrating to the cloud is quick and easy (Pill 2 of 5 / Cloud Pills)

The idea that migration to the cloud is simple, straightforward and rapid is a wrong assumption. It’s a common misconception of business stakeholders that generates delays, budget overruns and technical dept. A migration requires laborious planning, technical expertise and a rigorous process.  Migrations, especially cloud migrations, are not one-size-fits-all journeys. One of the most critical steps is under evaluation, under budget and under consideration. The evaluation phase, where existing infrastructure, applications, database, network and the end-to-end estate are evaluated and mapped to a cloud strategy, is crucial to ensure the success of cloud migration. Additional factors such as security, compliance, and system dependencies increase the complexity of cloud migration.  A misconception regarding lift-and-shits is that they are fast and cheap. Moving applications to the cloud without changes does not provide the capability to optimise costs and performance, leading to ...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...