[Tutorial] Raspberry Pi - Relays mit Python steuern

in #rasperry7 years ago


In diesem Video zeigen wir, wie man ein Relay mit einem Raspberry Pi steuert. Für die Steuerung der GPIOs wird Python verwendet.

Links:
• Raspberry Pi: http://amzn.to/2wbDadE
• Breadboard
: http://amzn.to/2xYtZSy
• Kabel: http://amzn.to/2hoZLxh
• DHT22
: http://amzn.to/2xo9Ge1
• Relay: http://amzn.to/2xkTb4Q
• Breadboard
: PowerSupply: http://amzn.to/2fh9THv
Befehle:
sudo -i
apt-get update
apt-get install python-dev
apt-get install python.rpi.gpio

nano gpio.py
-----Script-----
#!/usr/bin/python
import time
import RPi.GPIO as GPIO

GPIO.setmode(GPIO.BCM)
GPIO.setup(22, GPIO.OUT)
GPIO.output(22, GPIO.LOW)

time.sleep(10)

GPIO.output(22, GPIO.HIGH)
GPIO.cleanup()
---Script Ende---

Du möchtest uns Unterstützen?
Amazon: http://amzn.to/2fgzUHa
Prime
: http://amzn.to/2ffIF46
Blitzangebote*: http://amzn.to/2xmjSq1

Viel Spaß beim Anschauen ;)

  • Dies sind Affiliate-Link und du bezahlst nicht mehr für das Produkt, aber unterstützt uns ein klein wenig, wenn du vor deinem Einkauf auf einen der Links klickst.

▶️ DTube
▶️ IPFS
Sort:  

Sehr gutes Tutorial, bitte mehr davon.
Kennst du dich mit Bluetooth Steuerung aus? ein Tutorial wie ein Raspi das handeln kann wäre echt cool.

Hi, danke. Was genau meinst du mit Bluetooth Steuerung?

Hoi, ich würde gerne via BT mein Handy ansteuern - später auch andere Sachen (wie licht und so weiter). Hab mal gelesen, dass so was mit den raspi machbar ist. Nur leider noch kein genauen Plan.

was willst du auf deinem Handy ansteuern ? Mit dem Handy den Raspberry steuern würde mehr sinn machen.

Congratulations @ittv! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 1 year!

Click here to view your Board

Support SteemitBoard's project! Vote for its witness and get one more award!

Congratulations @ittv! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 2 years!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Vote for @Steemitboard as a witness to get one more award and increased upvotes!