code

Search

You can find the results of your search below.

linux
12 Hits, Last modified:
===== edit /etc/locale.gen and run locale-gen <code> apt-get install wiringpi python-pip # test GPIO gpio readall </code> non fare con raspbian recenti <code bash> # apt install rpi-update # rpi-update </code> ===== camera ===== <code> pip install "picamera[ar
gpio
4 Hits, Last modified:
asberry:physical-pin-numbers.png|}} test pin 17 <code> gpio -g mode 17 out gpio -g write 17 1 sleep 2 gpio -g write 17 0 </code> python <code> import RPi.GPIO as GPIO import time GPIO.cleanup() GPIO.setmode(GPIO.BOARD) channel=1... channel, GPIO.HIGH) time.sleep(1) GPIO.output(channel, GPIO.LOW) time.sleep(1) </code>