Embedded Programming and Robotics Lesson 12 Introducing the Raspberry Pi Intro to Raspberry Pi1.

Slides:



Advertisements
Similar presentations
Presented by W1BAW Bruce Wattendorf. What is a Raspberry PI A $35 computer with out a monitor, keyboard, mouse but they all can be added.
Advertisements

Lesson 15 – INSTALL AND SET UP NETWARE 5.1. Understanding NetWare 5.1 Preparing for installation Installing NetWare 5.1 Configuring NetWare 5.1 client.
Introduction to the Raspberry Pi ® Saman Amighi 10/2013 ® Raspberry Pi Foundation.
Installing software on personal computer
© 2010 VMware Inc. All rights reserved VMware ESX and ESXi Module 3.
Embedded Programming and Robotics
Embedded Programming and Robotics Lesson 13 Basic Linux 1.
An illustrated introduction to building a computer using a Raspberry Pi 2. A Raspberry Pi, that is! Images from Microsoft clipart.
RaspberryPi Ira Goldstein Siena College. What is a Raspberry Pi? University of Cambridge’s Computer Laboratory – Decline in skill level – Designed for.
Raspberry Pi Training Truman College Goals of our Training Today Unbox and boot up the Raspberry Pi (RPi) Learn how to access the desktop graphical.
SINGLE BOARD COMPUTERS -KEVIN JOSE. WHY DO WE USE THEM? Good performance at low price GPIO capability to interact with the outside world Small form factor,
Troubleshooting Hardware Issues Lesson 5. Objectives 2.
One to One instructions Installing and configuring samba on Ubuntu Linux to enable Linux to share files and documents with Windows XP.
Types of Computers Desktop / Laptop PC / Mac Client / Server.
Pi In The Sky Chris Stubbs. What’s in the HAB kit Balloon (keep this safe) Parachute PITS kit Raspberry Pi Model A (for flight) + SD + Camera Raspberry.
Configuring the MagicInfo Pro Display
Education 299: Raspberry Pi Training Mike Davis – Truman College 5/19/2015.
Tutorial 11 Installing, Updating, and Configuring Software
The PC The PC is a standard computing platform, built around a EISA bus (1988) –IBM compatible –“Intel Architecture” from Intel or AMD or other companies.
… but what parts does it have and how do they work? A computer looks like this...
Move Pictures From Your Mobile Phone to Your PC.  You never know when a photo opportunity is going to arise, which is why having a camera phone can be.
Raspberry Pi.
By Naveed Ahmad! How to setup a. First of all, what are the parts of a Raspberry Pi? Source:
This presentation will cover all of the work that was set during the third week of the course. This means that the task associated with the purpose of.
Introduction :  In the beginning, the calculator is the basic idea of computers out, then that arrived at the large computers.  in1980 or late seventies.
PARTS OF A COMPUTER 2 Hardware Computer Hardware is any of the physical parts of the computer you can touch. There are 4 categories: 1. Input Devices.
Intro to Raspberry Pi A Southwest Florida Hackerspace Workshop Presented by: Russell Benzing & Eric Schiffli.
Bonus EV3 Programming Lessons LEGO MINDSTORMS EV3Dev and Raspberry Pi Communicator.
Introduction to ev3dev: Setup
Bonus EV3 Programming Lessons By Droids Robotics LEGO MINDSTORMS and Raspberry Pi IR Light controller.
Bonus EV3 Programming Lessons LEGO MINDSTORMS ev3dev and Raspberry Pi IR Light controller.
HOW TO INSTALL WINDOWS 7? This step-by-step guide demonstrates how to install Windows 7 Ultimate. The guide is similar for other versions of Windows 7.
Embedded Software Design Week I Class Introduction Course Coverage Hardware Platforms * Some of this slides are inspired/copied from Dr. Mark Brehob’s.
Designing a Control System Sayande Adekoye College of North West London.
Raspberry Pi Project Control Your Home Lights with a Raspberry Pi.
Reset Windows 10 Forgotten Local Admin Password. Just take it easy, if you’ve forgotten Windows 10 local admin password and can’t log onto your PC. Here.
Raspberry PI 2 Installation & Demo App By Wayne Keadle.
An introduction to the Raspberry Pi. What is a Raspberry Pi?  University of Cambridge’s Computer Laboratory  Decline in skill level  Designed for education.
RaspberryPi.
Python with Raspberry PI Kit
After Construction Name: Per #:.
Another slice of pi Hands-ON with the raspberry pi computer
Introduction to Raspberry Pi & Kano
Workshop on Raspberry Pi 3
Ira Goldstein Siena College
RASPBERRY PI WORKSHOP.
IoT 101 with Raspberry Pi and Azure
Robot Hardware 2017 Jacob White.
D-STAR InfoCon 2015 at Big Spring TX Part 3 – Doing More With D-STAR
A microcontroller Raspberry Pi 2 Model B V1.1 RPi
Raspberry Pi in Headless Operation
Presentation created by Jared D.
Programming with Arduinos and Rapsberry Pi
Lighting LEDs with a RASPBERRY PI
Engineering Innovation Center
Connecting hardware and Booting the computer
Creating a Media Server with a Raspberry Pi
Raspberry Pi Pi 2 Model B.
An introduction to the Raspberry Pi
Building an Internet of Things Device
What is a Raspberry Pi? The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard.
Radoslaw Jedynak, PhD Poland, Technical University of Radom
Raspberry Pi – VNC Server Connection
ICT Programming Lesson 2:
Lecture9: Embedded Network Operating System: cisco IOS
Beginning Raspberry Pi
Python with Raspberry PI Kit
Presented by David Ramos
Lecture9: Embedded Network Operating System: cisco IOS
Setting up a Webcam on a Raspberry Pi
Presentation transcript:

Embedded Programming and Robotics Lesson 12 Introducing the Raspberry Pi Intro to Raspberry Pi1

Raspberry Pi B Model 2 Intro to Raspberry Pi2

The Raspberry Pi This tiny board, like the Arduino, is open-source hardware It more expensive, at $30 to $35 for the board alone, versus $6 to $10 for the Arduino It requires a MicroSD card as a disk drive, which can be had for as little as $6 Takes more electrical power than the Arduino Intro to Raspberry Pi3

The Raspberry Pi Advantages: You can program the Pi from itself, without an external computer Built-in wired Ethernet 1GB of main memory (B+) 40 GPIO pins Camera connector Intro to Raspberry Pi4

The Raspberry Pi Runs Linux You can download a disk image to burn onto a MicroSD card here, if you have not already done so: Get the Raspian Wheezy disk image Get the disk image writer here: Intro to Raspberry Pi5

Installing Linux If you haven’t done this already, use the disk imager to burn the Linux image onto the MicroSD card Insert the SD card into the slot under the board on the back edge away from the USB ports Intro to Raspberry Pi6

Connecting It Up Connect a mouse and keyboard to two USB ports Connect the monitor to the HDMI port Connect your cell-phone charger to the micro USB port Connect the Ethernet cable if we have wired Ethernet available The Pi should boot Linux If not, make sure the SD card is seated properly and that the monitor is set for HDMI The default user name is Pi and the password is raspberry Intro to Raspberry Pi7

Configuring Linux If the Pi has come up in the graphical shell, double-click on LXTerminal At the prompt, type sudo raspi-config The first option is to expand the file system. Do this. Option 3 determines whether you boot into the command line or the graphical shell. If you didn’t get the shell, change it so you do. Enable the camera; we’ll need it later Reboot Intro to Raspberry Pi8

Configuring Linux Bring up raspi-config again Go to the option on internationalization Choose a US-style keyboard. If you don’t, the quotation marks on your keyboard are interchanged with sign, and it can get confusing, especially if you touch-type Reboot again Intro to Raspberry Pi9

Upgrade and Update Linux sudo apt-get upgrade sudo apt-get update Intro to Raspberry Pi10

Networking Determine your IP address: ifconfig You may need this for connecting through remote desktop If no IP address shows, troubleshoot your network connection Intro to Raspberry Pi11

Remote Desktop Install tightVNC. At the linux command prompt, type: sudo apt-get install tightvncserver Once it is installed, type: sudo vncserver :1 On your laptop computer, download the tightVNC viewer from: Intro to Raspberry Pi12

Remote Desktop Use the ifconfig command to determine your Pi’s IP address Bring up the tightVNC Viewer on your PC Enter the IP address followed by port 5901, something like this: :5901 You should get a Raspberry Pi desktop Intro to Raspberry Pi13

GPIO Pins Unlike the Arduino, the Pi’s GPIO pins are 3.2V, not 5V You can still control a motor with them but it takes more code or extra chips We’ll discuss how to control these from Python later Intro to Raspberry Pi14

Camera There is a special connector just behind the Ethernet connector for a camera You must be very careful inserting the end of the cable; you can break the wires all too easily Don’t do this yet Intro to Raspberry Pi15

WiFi To be really useful on a robot, you should not have to tether the Pi with a network cable You have USB WiFi modules which we will discuss later Intro to Raspberry Pi16