Book Image

Internet of things with Intel Galileo

By : de Sousa
Book Image

Internet of things with Intel Galileo

By: de Sousa

Overview of this book

This book employs an incremental, step-by-step approach to get you familiarized with everything from the basic terms, board components, and development environments to developing real projects. Each project will demonstrate how to use specific board components and tools. Both Galileo and Galileo Gen 2 are covered in this book.
Table of Contents (12 chapters)
11
Index

Booting from the IoT Developer Kit image


Now that you have your Developer Kit image, insert it in the Galileo SD card reader and connect it to the Internet by using an Ethernet cable. Power your board on and wait for it to start from the bootable card.

Now, we need to find the Galileo's IP address. Like the Clanton image, this one can also be used with the Arduino IDE. To find your IP address, you can use the Arduino sketch used in the Finding your board IP address section in Chapter 3, Monitoring the Board Temperature. Upload the sketch using the Arduino IDE and find the IP address printed in the serial monitor. Now, let's access the board from your computer. If you are using Mac OS or Linux, you can execute the ssh root@my_galileo_ip_address command from a terminal. In Windows, you should use PuTTY, select the option SSH, and in the Host Name (or IP address) field, type root@my_galileo_ip_address. Replace my_galileo_ip_address with the one your board is using.

If everything went right, you...