Raspberry Pi The singing jelly baby.

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

By: Lloyd Albin 9/28/2012. We are not talking about a Raspberry Pie.
An application of GGplot Eitan Halper-Stromberg. Getting Started R CMD build targetSeqView.zip R CMD INSTALL.
EMOS Group 3 組員:郭柏宏 郭建漢 蕭鼎亞 黃雍文 黃博奕.
Embedded Programming and Robotics Lesson 19 Raspberry Pi Programming in C 1.
Embedded Programming and Robotics
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,
Raspberry Pi GPIO Pin naming conventions Using sysfs
Vehicle Collision Avoidance System
Development Environments Raspberry Pi ® Saman Amighi 04/2014 ® Raspberry Pi Foundation.
By Naveed Ahmad! How to setup a. First of all, what are the parts of a Raspberry Pi? Source:
Embedded Programming and Robotics
Wall Encounter By Made easy by Dwayne Abuel.
Braille Printer An-Najah National University Faculty of Engineering Braille Printer Prepared by : Rbee waheeb Supervisor: Dr. Nidal Farahat May
Welcome to Week 4 at the Summer Computer Club Raspberry Pi (contd)
Bonus EV3 Programming Lessons By Droids Robotics LEGO MINDSTORMS and Raspberry Pi Communicator.
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.
Raspberry Pi Garage Door Mark Barron NET 499 Eastern Kentucky University.
Raspberry Pi Project Control Your Home Lights with a Raspberry Pi.
Raspberry Pi project - 라즈베리파이로 핑퐁게임하기 신동윤 박지환.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
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.
Workshop on Raspberry Pi 3
Computer System Laboratory
Ira Goldstein Siena College
Class 1: Building a Raspberry Pi LED Flasher
RASPBERRY PI WORKSHOP.
RASPBERRY PI WORKSHOP.
Implementation of Embedded OS
IoT 101 with Raspberry Pi and Azure
Internet of Things (internet of everything?)
Computer System Laboratory
Embedded Software Development with Python and the Raspberry Pi
Running your own web server
The Raspberry Pi Initiative
A microcontroller Raspberry Pi 2 Model B V1.1 RPi
WORKSHOP LED CONTROL.
RASPBERRY PI WORKSHOP.
Building Raspberry Pi Controllers with Python
Lighting LEDs with a RASPBERRY PI
Raspberry Pi.
Java Programming on the Raspberry Pi with Pi4J
www 123 hp com setup hp com setup :
www 123 hp com setup hp com setup :
Internet-of-Things (IoT)
Building Raspberry Pi Controllers with Python
Embedded Software Development with Python and the Raspberry Pi
Traffic light programming challenges
Raspberry Pi with Pibrella
Building Raspberry Pi Controllers with Python
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.
LEGO MINDSTORMS and Raspberry Pi Communicator
Raspberry Pi – Starting Code at Boot time How to run scripts when you boot up your Pi Pete Januarius Sept 2018.
Raspberry Pi – VNC Server Connection
Raspberry Pi 2/3 GPIO - LED, Button
RPi 2/3 GPIO + Web(Flask)
GUI PROGRAMMING USING TKINTER to celebrate Translation Week
Python 19 Mr. Husch.
Beginning Raspberry Pi
Introduction to Git and Github
Python 19 Mr. Husch.
Inequalities TRUE FALSE.
What you need to do… Drag the pieces of code into the correct order like you can see in the EXAMPLE below. print ( “ int input ) = + Hello world chr ord.
Internal components of a computer.
Presented by David Ramos
Starter What’s the same and what’s different?
Presentation transcript:

Raspberry Pi The singing jelly baby

Starter task Name each of the components on the Raspberry Pi. If you can, tell me what each of them is for.

Command line coding Type these three commands seperately. sudo apt-get install mpg321 wget https://github.com/Rob-Bishop/ RaspberryPiRecipes/blob/master/la.mp3 nano SingingJellyBaby.py

Python coding Import time Import Rpi.GPIO as GPIO Import os GPIO.cleanup() GPIO.setmode(GPIO.BOARD) GPIO.setup(3,GPIO.IN) While True: if GPIO.input(3) == False: os.system(‘mpg321 la.mp3 &’) time.sleep(1) Sudo python SingingJellyBaby.py

Put your headphones on… …Now push your jelly baby!