A microcontroller Raspberry Pi 2 Model B V1.1 RPi

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

BEYOND SMARTPHONES WITH RASPBERRY PI BY - ASHISH KSHIRSAGAR.
Raspberry Pi Surrey Amateur Radio Club November 12, 2014 AN INTRODUCTION TO THIS NON-EDIBLE DELIGHT.
Introduction to the Raspberry Pi ® Saman Amighi 10/2013 ® Raspberry Pi Foundation.
Embedded Programming and Robotics Lesson 12 Introducing the Raspberry Pi Intro to Raspberry Pi1.
APT 2.0 Simon Dawes & Keith Rickard Update 1. What is the APT? A utomatic P hotometric T elescope Built by Jack Ells in 1984 (based on JBAA) A utomatic.
RaspberryPi Ira Goldstein Siena College. What is a Raspberry Pi? University of Cambridge’s Computer Laboratory – Decline in skill level – Designed for.
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,
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.
Juan Miguel Valverde Martínez.  What is a Home Media Center?  Raspberry Pi  Idea  Interface  Potential.
Hands-On Virtual Computing
Raspberry Pi.
Terminal Servers in Schools A second life for your older computers.
Introduction :  In the beginning, the calculator is the basic idea of computers out, then that arrived at the large computers.  in1980 or late seventies.
Intro to Raspberry Pi A Southwest Florida Hackerspace Workshop Presented by: Russell Benzing & Eric Schiffli.
Embedded Software Design Week I Class Introduction Course Coverage Hardware Platforms * Some of this slides are inspired/copied from Dr. Mark Brehob’s.
Rasberry pi 2 model B. Selve computeren i rasberry pi’en.
Parts of a Computer Created by Carmen Garzes. An electronic device that manipulates information or data. It can store, retrieve or process data. There.
Raspberry Pi Project Control Your Home Lights with a Raspberry Pi.
Introducing the Raspberry Pi Nauru ICT Department April 2016.
PCs ENVIRONMENT and PERIPHERALS Lecture 4. An expansion cards: - An expansion card (expansion board) is an electronic circuit board that adds more functionality.
Farhin Al Masud What is Raspberry PI? o Low cost, credit card sized computer o SOC (System on a chip) o Founded by Raspberry PI foundation.
Raspberry PI 2 Installation & Demo App By Wayne Keadle.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
An introduction to the Raspberry Pi. What is a Raspberry Pi?  University of Cambridge’s Computer Laboratory  Decline in skill level  Designed for education.
SAURABH GINGADE 12311A0480. The Raspberry Pi is a credit-card sized computer.
RaspberryPi.
Engineering Innovation Center
Building Raspberry Pi Controllers with Python
A microcontroller Raspberry Pi 2 Model B V1.1 RPi
Workshop on Raspberry Pi 3
Computer System Laboratory
Ira Goldstein Siena College
RASPBERRY PI WORKSHOP.
Welcome to Arduino A Microcontroller.
What’s out there and who’s using it
RASPBERRY PI WORKSHOP.
IoT 101 with Raspberry Pi and Azure
By: Brian Johnson, AB6UI 20 Sept 2017
D-STAR InfoCon 2015 at Big Spring TX Part 3 – Doing More With D-STAR
Prepared by: Raghad J Foqha Supervisor: Dr. Saed Tarapiah
Chapter A - The Raspberry Pi Computer
Microcontrollers & GPIO
Running your own web server
Connected Products and Microcontrollers
An Arduino Workshop A Microcontroller.
INTRODUCTION TO COMPUTING
Lecture 6 Uli Raich UCC semester 2017/2018
Alþingi's Digital Signage System
Programming with Arduinos and Rapsberry Pi
Tutorial : Raspberry Pi
Engineering Innovation Center
Creating a Media Server with a Raspberry Pi
Raspberry Pi.
Raspberry Pi Pi 2 Model B.
An introduction to the Raspberry Pi
Raspberry Pi. Introduction to Raspberry Pi Python Electronics Linux Outline.
Internet-of-Things (IoT)
What we learn during Program
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.
Workshop GPIO I2C SPI Panic1 woensdag 10 april 2019.
Beginning Raspberry Pi
Introduction to Single Board Computer
Computing Essentials Module 1.
Computing Essentials Module 1.
Emphasis: Get it working and do stuff!
Raspberry Pi Hardware By: Mike Kwiatkowski.
Setting up a Webcam on a Raspberry Pi
Edge TPU Coral Dev Board: A tutorial
Presentation transcript:

A microcontroller Raspberry Pi 2 Model B V1.1 RPi

Computer in your hand A microcontroller (sometimes abbreviated µC, uC or MCU) is a small computer on a single integrated circuit containing a processor core, memory, and programmable input/output peripherals. The majority of microcontrollers in use today are embedded in other machinery, such as automobiles, telephones, appliances, and peripherals for computer system. A system on a chip (SoC) combines the required electronic circuits of various computer components onto a single, integrated chip (IC). The difference between a SoC and a microcontroller often times is defined by the amount of random access memory (RAM). A SoC is capable of running its own operating system. Sooner or later you just need more power! (Arduino vs RPi)

40 GPIO (Input /Output) SOC – System On a Chip (Broadcom BCM2836) + 1GB RAM Mounting hole SMSC LAN9514 USB Ethernet controller Power & activity LED’s Close RUN header to reset Pi 4 USB ports DSI Display Connector SD Card (underneath) Switching regulator for less power consumption 10/100 T Base Ethernet port Power - Micro USB 5v HDMI Digital video out CSI Camera Connector 4 Pole 3.5mm jack (stereo audio & composite video)

RPi https://www.raspberrypi.org/ The challenge with RPi’s is that you can run different operating systems and different code on them They are more flexible, more powerful than many others on the market This means more options = more confusion

Our recommendation Raspbian https://www.raspberrypi.org/downloads/raspbian/ NOTE: all images run from the Micro SD card – you may need the adapter to fit into your PC/laptop

Other OS’s NOOBS (New Out Of the Box Software) https://www.raspberrypi.org/help/noobs-setup/ NOOBS can often come as a pre-install option Openelec for home media centre Yes you can run Windows or Ubuntu and others… Unzip as required and install to the Micro SD

Installing raspbian with windows Install Win 32 disk imager http://www.raspberry-projects.com/pi/pi-operating- systems/win32diskimager Use the disk imager to point the Raspbian image to the Micro SD card to write the image Install the card into the RPi and power it on….

Installing raspBian with linux Start the terminal app (console or command line) Note: the ‘dd’ tool can overwrite ANY partition, be careful! https://www.raspberrypi.org/documentation/installation/ installing-images/linux.md sudo dd bs=4M if=path_of_your_image.img of=/dev/sdd ‘If=‘ is the argument with the path to your *.img file ‘Of=‘ is the output argument, the destination

Installing raspbian with Apple Start the terminal app (console or command line) Note: the ‘dd’ tool can overwrite ANY partition, be careful! https://www.raspberrypi.org/documentation/installation/inst alling-images/mac.md sudo dd bs=1m if=path_of_your_image.img of=/dev/rdiskn ‘n’ on rdiskn should equal the number for the Micro SD card If the command doesn’t work try (disk not rdisk): sudo dd bs=1m if=path_of_your_image.img of=/dev/diskn

Starting up the Rpi for the first time Insert prepared micro SD card with OS installed Connect HDMI to monitor Connect a USB keyboard and mouse Connect to a network (Ethernet or wireless USB) Connect the power (it will then start)

You will see a configuration window: Enable SSH

login Standard user = pi Standard password = raspberry

The Shell, or Bash: Born Again SHell LXTerminal Logged in as user ‘pi’ Logged into this host Home directory (~) Ordinary user LXTerminal

Enable ssh manually Enter sudo raspi-config in the terminal Then navigate to ssh Hit Enter and select Enable or disable ssh server.

startx