Outline |
---|
Single Board Computers |
Raspberry Pi - Short Introduction |
RPi Pinout |
Raspbian - Getting Started |
Node-RED & Python |
A Single-Board Computer (SBC) is a computer built on a single circuit board, with microprocessor(s), memory, input/output (I/O) and other features required of a functional computer. SBCs typically provide a fanless, low-power computing solution. Current SBCs come with a wide variety of processor types, most with GPUs on-board. These processors range from X86 based processors from the traditional PC space (AMD and Intel) to ARM processors which have traditionally been used in the industrial and more recently mobile spaces. The most prevalent form of software used on SBCs is Linux with numerous derivations including Android, Ubuntu, Fedora, Debian and Arch Linux as well as FreeBSD.
Many of today's SBCs have become so powerful that they are beginning to have the capability of modern day PCs and tablets. This trend will continue as more powerful processors make their way into the embedded computing market as ever-increasing performance/price ratios rise, as well as additional manufacturers enter into this "Wild West" frontier of supporting open source hardware and software for both DIYers and professionals alike.
In 2006, a group based in the University of Cambridge's Computer Laboratory, decided to address the need for a low cost computing platform that would allow kids to learn how to program without the need for a full-fledged home computer.
The result was a $35 single board computer named Raspberry Pi. While initially designed as a tool for students to learn programming, the Raspberry Pi was adopted by makers, designers, students and even professional engineers and helped to launch the current boom in interest in SBCs.
Ref: Electronic Design, Then and Now A Brief History of Single Board Computers
Nine Sub-$50 SBCs that Challenge the Raspberry Pi and BeagleBone Black
86Duino, A10-OLinuXino-Lime, Arduino TRE, Banana Pi, BPi D1, HummingBoard-i1, Odroid-C1, Orange Pi, and pcDuino3 Nano
Ref: hackerboards.com
What's more, the Raspberry Pi has the ability to interact with the outside world, and has been used in a wide array of digital maker projects, from music machines and parent detectors to weather stations and tweeting birdhouses with infra-red cameras.
Raspberry PI Model A $25 - 256 MB RAM, 1 USB, No Ethernet, GPIO 26
Raspberry PI Model B $35 - 512 MB RAM, 2 USB, Ethernet , GPIO 26
Raspberry PI Model B+ $35 - 512 MB RAM, 4 USB, Ethernet, GPIO 40
All have HDMI Out with Audio
All have Audio Jack out
On Raspberry Pi, all GPIO banks are supplied from 3.3V. Connection of a GPIO to a voltage higher than 3.3V will likely destroy the GPIO block within the SoC.
Arduino boards are micro-controllers, not full computers. They don't run a full operating system, but simply execute written code as their firmware interprets it.
You lose access to the basic tools an operating system provides, but on the other hand, directly executing simple code is easier, and is accomplished with no operating system overhead.
The main purpose of the Arduino board is to interface with sensors and devices, so it's great for hardware projects in which you simply want things to respond to various sensor readings and manual input.
Ref: Digital Trends via Kopcak
It is always recommended to connect the MicroUSB Power to the unit last (while most connections can be made live, it is best practice to connect items such as displays and other connections with the power turned off).
Ref: Basic Setup
# credential: pi/raspberry$ sudo raspi-config# after reboot$ df -h$ uname -a$ lsb_release -a
$ sudo apt-get install tightvncserver$ tightvncserver # access password, min 6 chars$ vncserver :1 -geometry 800x600 -depth 24$ sudo service lightdm stop
Node-RED is a tool for wiring together hardware devices, APIs and online services in new and interesting ways.
Node-RED provides a browser-based flow editor that makes it easy to wire together flows using the wide range nodes in the palette. Flows can be then deployed to the runtime in a single-click.
JavaScript functions can be created within the editor using a rich text editor.
A built-in library allows you to save useful functions, templates or flows for re-use.
Ref: Node-RED
import RPi.GPIO as GPIOimport timeGPIO.setmode(GPIO.BCM)GPIO.setwarnings(False)led = 4GPIO.setup(led,GPIO.OUT)def blink(pin): GPIO.output(pin,1) time.sleep(1) GPIO.output(pin,0) time.sleep(1)for i in range (0,10): blink(led)GPIO.cleanup()
Outline |
---|
Single Board Computers |
Raspberry Pi - Short Introduction |
RPi Pinout |
Raspbian - Getting Started |
Node-RED & Python |
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |