Basic Cloning The first use case we will explore cloning a running raspberry pi to a fresh SD card. To make things easy, we will do all these steps on the actual raspberry pi. You will need to have one free USB port and a...
Unapređena verzija najprodavanijeg kontrolera Raspberry Pi Model B. – Manja potrošnja – Izmenjen naponski stepen koji omogućuje priključenje više uređaja do 1,8A – Povećan broj GPIO pinova, ukupno 40! – Dodatna 2 USB porta – Micro SD podrška
Jednostavno rešenje za praćenje potrošnje preko LED impulsne diode na samom strujomeru. Fotoćelija prati impulse i pomoću skripte generiše stanje. file: electric.py #!/usr/bin/python import RPi.GPIO as GPIO import time import subprocess import smbus bus = smbus.SMBus(0) from datetime import timedelta meterIps = [12] def _setup(): GPIO.setmode(GPIO.BOARD)...