Raspberry Pi: Porovnání verzí
Bez shrnutí editace |
Bez shrnutí editace |
||
Řádek 52: | Řádek 52: | ||
[[Soubor:PDF.gif]] [https://blog.withcode.uk/wp-content/uploads/2016/10/RPi_GPIO_python_quickstart_guide.pdf Raspberry Pi Python GPIO Quick start guide] | [[Soubor:PDF.gif]] [https://blog.withcode.uk/wp-content/uploads/2016/10/RPi_GPIO_python_quickstart_guide.pdf Raspberry Pi Python GPIO Quick start guide] | ||
=== Introduction === | |||
==== [https://learn.sparkfun.com/tutorials/raspberry-gpio Raspberry gPIo] ==== | |||
[https://learn.sparkfun.com/tutorials/raspberry-gpio#using-an-ide Download and Install Geany] | |||
[[Soubor:Geany.png|400px|link=https://learn.sparkfun.com/tutorials/raspberry-gpio#using-an-ide]] | |||
== Wiring Pi == | |||
[[Soubor:RBP_Pinout.png|300px|link=https://pinout.xyz/pinout/wiringpi/]] | |||
{{#widget:YouTube|id=J6KsTz6hjfU|height=270|width=360|Popis|right}} | |||
===[http://wiringpi.com/examples/blink/ Blink]=== | |||
[[Soubor:RB_LED.png|300px|link=http://wiringpi.com/examples/blink/]] | |||
<source lang"C"> | |||
#include <wiringPi.h> | |||
int main (void) | |||
{ | |||
wiringPiSetup () ; | |||
pinMode (0, OUTPUT) ; | |||
for (;;) | |||
{ | |||
digitalWrite (0, HIGH) ; delay (500) ; | |||
digitalWrite (0, LOW) ; delay (500) ; | |||
} | |||
return 0 ; | |||
} | |||
</source> | |||
To compile and run: | |||
gcc -Wall -o blink blink.c -lwiringPi | |||
sudo ./blink | |||
=== Set up the ports === | |||
[[soubor:RB2_LED-PUSCH-SERVO.png|400px]] | |||
[http://raspi.tv/2013/how-to-use-wiringpi2-for-python-on-the-raspberry-pi-in-raspbian How to use WiringPi2 for Python on the Raspberry Pi in Raspbian part 1] | |||
<source lang"C"> | |||
# GPIO port numbers | |||
import wiringpi2 as wiringpi | |||
wiringpi.wiringPiSetupGpio() | |||
wiringpi.pinMode(25, 0) # sets GPIO 25 to input | |||
wiringpi.pinMode(24, 1) # sets GPIO 24 to output | |||
wiringpi.pinMode(18, 2) # sets GPIO 18 to PWM mode | |||
# wiringpi numbers | |||
import wiringpi2 as wiringpi | |||
wiringpi.wiringPiSetup() | |||
wiringpi.pinMode(6, 0) # sets WP pin 6 to input | |||
wiringpi.pinMode(5, 1) # sets WP pin 5 to output | |||
wiringpi.pinMode(1, 2) # sets WP pin 1 to PWM mode | |||
# Physical P1 header pin numbers | |||
import wiringpi2 as wiringpi | |||
wiringPiSetupPhys() | |||
wiringpi.pinMode(22, 0) # sets P1 pin 22 to input | |||
wiringpi.pinMode(18, 1) # sets P1 pin 18 to output | |||
wiringpi.pinMode(12, 2) # sets P1 pin 12 to PWM mode | |||
</source> | |||
===[http://hackyourmind.org/articles/2013/06/07/raspberry-pi-with-7-segment-display.html Raspberry Pi with 7-segment display]=== | |||
[[Soubor:HD-M514RD.jpg|200px|link=http://hackyourmind.org/articles/2013/06/07/raspberry-pi-with-7-segment-display.html]] | |||
== Python == | |||
https://pypi.python.org/pypi/RPi.GPIO | |||
/opt/nagioe/python_demo/blink.py | |||
/opt/nagioe/python_demo/push.py | |||
===blink.py=== | |||
<source lang"C"> | |||
import RPi.GPIO as GPIO | |||
import time | |||
# blinking function | |||
def blink(pin): | |||
GPIO.output(pin,GPIO.HIGH) | |||
time.sleep(1) | |||
GPIO.output(pin,GPIO.LOW) | |||
time.sleep(1) | |||
return | |||
# to use Raspberry Pi board pin numbers | |||
GPIO.setmode(GPIO.BOARD) | |||
GPIO.setwarnings(False) | |||
# set up GPIO output channel | |||
GPIO.setup(11, GPIO.OUT) | |||
# blink GPIO17 50 times | |||
for i in range(0,50): | |||
blink(11) | |||
GPIO.cleanup() | |||
</source> | |||
===push.py=== | |||
<source lang"C"> | |||
import RPi.GPIO as GPIO | |||
import time | |||
print GPIO.RPI_REVISION | |||
print GPIO.VERSION | |||
GPIO.setmode(GPIO.BOARD) | |||
pin=40 | |||
GPIO.setup(pin, GPIO.IN) | |||
GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_UP) | |||
while (1): | |||
print GPIO.input(pin) | |||
time.sleep(0.5) | |||
#GPIO.output(pin, False) | |||
GPIO.cleanup() | |||
</source> | |||
=== Control LED === | |||
<source lang"C"> | |||
import RPi.GPIO as GPIO | |||
import time | |||
# blinking function | |||
def blink(pin, pin2): | |||
GPIO.output(pin,GPIO.HIGH) | |||
time.sleep(0.1) | |||
GPIO.output(pin,GPIO.LOW) | |||
time.sleep(0.1) | |||
GPIO.output(pin2,GPIO.HIGH) | |||
time.sleep(0.1) | |||
GPIO.output(pin2,GPIO.LOW) | |||
time.sleep(0.1) | |||
return | |||
# to use Raspberry Pi board pin numbers | |||
GPIO.setmode(GPIO.BOARD) | |||
GPIO.setwarnings(False) | |||
# set up GPIO output channel | |||
GPIO.setup(11, GPIO.OUT) | |||
GPIO.setup(13, GPIO.OUT) | |||
GPIO.setup(40, GPIO.IN, pull_up_down=GPIO.PUD_UP) | |||
blink(11, 13) | |||
while (1): | |||
if GPIO.input(40) == 0: | |||
blink(11, 13) | |||
time.sleep(0.1) | |||
GPIO.cleanup() | |||
</source> | |||
=== Turn LED === | |||
source: http://engr.uconn.edu/~song/classes/nes/RPi.pdf | |||
<source lang"C"> | |||
import RPi.GPIO as GPIO | |||
import time | |||
def main(): | |||
GPIO.cleanup() | |||
GPIO.setmode(GPIO.BOARD) # to use Raspberry Pi board pin numbers | |||
GPIO.setup(11, GPIO.OUT) # set up GPIO output channel | |||
while True: | |||
GPIO.output(11, GPIO.LOW) # set RPi board pin 11 low. Turn off LED. | |||
time.sleep(1) | |||
GPIO.output(11, GPIO.HIGH) # set RPi board pin 11 high. Turn on LED. | |||
time.sleep(2) | |||
main() | |||
</source> | |||
== RaspBian == | |||
Username: pi, password: NAGIoE2015 | |||
Re-mapping Keyboard: XKBLAYOUT=”gb” Change “gb” to “us” | |||
sudo vi /etc/default/keyboard | |||
Start the desktop by typing: (http://engr.uconn.edu/~song/classes/nes/RPi.pdf) | |||
startx | |||
Booting your Raspberry Pi for the first time | |||
sudo raspi-config | |||
Update apt-get package index files: | |||
sudo apt-get update | |||
Install SSH: | |||
sudo apt-get install ssh | |||
Start SSH server: | |||
sudo /etc/init.d/ssh start | |||
To start the SSH server every time the Pi boots up: | |||
sudo update-rc.d ssh defaults | |||
[http://www.raspberrypi-spy.co.uk/2014/05/how-to-autostart-apps-in-rasbian-lxde-desktop/ How To Autostart Apps In Rasbian LXDE Desktop] | |||
sudo nano /etc/xdg/lxsession/LXDE-pi/autostart | |||
Auto-run Python Scripts | |||
@/usr/bin/python /home/pi/example.py |
Verze z 4. 2. 2022, 12:24
NAG-IoE | |
Soutěž NAG-IoE |
Raspberry
http://www.youtube.com/user/RaspberryPiTutorials/videos
http://www.youtube.com/user/RaspberryPiBeginners/videos?flow=grid&view=0
RaspberryPi - ovládání GPIO přes web
MagPi - A Magazine for Raspberry Pi Users
IoT UPJŠ
DU: shlédnou videa (alt. z jiných zdrojů) o Raspberry. https://youtu.be/fdBSbarhAUY https://youtu.be/0VwchnogzuQ Potvrďte splnění
VNC: ssh pi@192.168.1.238 ifconfig
sudo raspi.config
rasbian na PC
create.withcode.uk
Raspberry Pi Python GPIO Quick start guide
Introduction
Raspberry gPIo
Wiring Pi
Blink
#include <wiringPi.h>
int main (void)
{
wiringPiSetup () ;
pinMode (0, OUTPUT) ;
for (;;)
{
digitalWrite (0, HIGH) ; delay (500) ;
digitalWrite (0, LOW) ; delay (500) ;
}
return 0 ;
}
To compile and run:
gcc -Wall -o blink blink.c -lwiringPi sudo ./blink
Set up the ports
How to use WiringPi2 for Python on the Raspberry Pi in Raspbian part 1
# GPIO port numbers
import wiringpi2 as wiringpi
wiringpi.wiringPiSetupGpio()
wiringpi.pinMode(25, 0) # sets GPIO 25 to input
wiringpi.pinMode(24, 1) # sets GPIO 24 to output
wiringpi.pinMode(18, 2) # sets GPIO 18 to PWM mode
# wiringpi numbers
import wiringpi2 as wiringpi
wiringpi.wiringPiSetup()
wiringpi.pinMode(6, 0) # sets WP pin 6 to input
wiringpi.pinMode(5, 1) # sets WP pin 5 to output
wiringpi.pinMode(1, 2) # sets WP pin 1 to PWM mode
# Physical P1 header pin numbers
import wiringpi2 as wiringpi
wiringPiSetupPhys()
wiringpi.pinMode(22, 0) # sets P1 pin 22 to input
wiringpi.pinMode(18, 1) # sets P1 pin 18 to output
wiringpi.pinMode(12, 2) # sets P1 pin 12 to PWM mode
Raspberry Pi with 7-segment display
Python
https://pypi.python.org/pypi/RPi.GPIO
/opt/nagioe/python_demo/blink.py /opt/nagioe/python_demo/push.py
blink.py
import RPi.GPIO as GPIO
import time
# blinking function
def blink(pin):
GPIO.output(pin,GPIO.HIGH)
time.sleep(1)
GPIO.output(pin,GPIO.LOW)
time.sleep(1)
return
# to use Raspberry Pi board pin numbers
GPIO.setmode(GPIO.BOARD)
GPIO.setwarnings(False)
# set up GPIO output channel
GPIO.setup(11, GPIO.OUT)
# blink GPIO17 50 times
for i in range(0,50):
blink(11)
GPIO.cleanup()
push.py
import RPi.GPIO as GPIO
import time
print GPIO.RPI_REVISION
print GPIO.VERSION
GPIO.setmode(GPIO.BOARD)
pin=40
GPIO.setup(pin, GPIO.IN)
GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)
while (1):
print GPIO.input(pin)
time.sleep(0.5)
#GPIO.output(pin, False)
GPIO.cleanup()
Control LED
import RPi.GPIO as GPIO
import time
# blinking function
def blink(pin, pin2):
GPIO.output(pin,GPIO.HIGH)
time.sleep(0.1)
GPIO.output(pin,GPIO.LOW)
time.sleep(0.1)
GPIO.output(pin2,GPIO.HIGH)
time.sleep(0.1)
GPIO.output(pin2,GPIO.LOW)
time.sleep(0.1)
return
# to use Raspberry Pi board pin numbers
GPIO.setmode(GPIO.BOARD)
GPIO.setwarnings(False)
# set up GPIO output channel
GPIO.setup(11, GPIO.OUT)
GPIO.setup(13, GPIO.OUT)
GPIO.setup(40, GPIO.IN, pull_up_down=GPIO.PUD_UP)
blink(11, 13)
while (1):
if GPIO.input(40) == 0:
blink(11, 13)
time.sleep(0.1)
GPIO.cleanup()
Turn LED
source: http://engr.uconn.edu/~song/classes/nes/RPi.pdf
import RPi.GPIO as GPIO
import time
def main():
GPIO.cleanup()
GPIO.setmode(GPIO.BOARD) # to use Raspberry Pi board pin numbers
GPIO.setup(11, GPIO.OUT) # set up GPIO output channel
while True:
GPIO.output(11, GPIO.LOW) # set RPi board pin 11 low. Turn off LED.
time.sleep(1)
GPIO.output(11, GPIO.HIGH) # set RPi board pin 11 high. Turn on LED.
time.sleep(2)
main()
RaspBian
Username: pi, password: NAGIoE2015
Re-mapping Keyboard: XKBLAYOUT=”gb” Change “gb” to “us”
sudo vi /etc/default/keyboard
Start the desktop by typing: (http://engr.uconn.edu/~song/classes/nes/RPi.pdf)
startx
Booting your Raspberry Pi for the first time
sudo raspi-config
Update apt-get package index files:
sudo apt-get update
Install SSH:
sudo apt-get install ssh
Start SSH server:
sudo /etc/init.d/ssh start
To start the SSH server every time the Pi boots up:
sudo update-rc.d ssh defaults
How To Autostart Apps In Rasbian LXDE Desktop
sudo nano /etc/xdg/lxsession/LXDE-pi/autostart
Auto-run Python Scripts
@/usr/bin/python /home/pi/example.py