BananaPro (Armbian ab 1/2018): Unterschied zwischen den Versionen

Aus www.electronic-man.randschtoischlotzer.de
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „==Armbian (Debian Server Mainline Kernel) (ab 1/2018)== ===Download=== https://www.armbian.com/banana-pi-pro/ ===Infos zur Hardware === https://linux-sunxi.org…“)
 
K
Zeile 10: Zeile 10:
 
Kennwort:
 
Kennwort:
 
  1234
 
  1234
 +
 +
==RPi.GPIO auf Banana Pro einrichten==
 +
 +
'''Voraussetzungen:''' Paket ''sudo'' muss instaliert sein.
 +
* GIT installieren:
 +
sudo apt-get update
 +
sudo apt-get install git
 +
* Paket herunterladen:
 +
cd /root
 +
<pre>git clone https://github.com/LeMaker/RPi.GPIO_BP -b bananapro</pre>
 +
* Installation:
 +
sudo apt-get update
 +
sudo apt-get install python-dev
 +
* Kompilieren und Installieren:
 +
cd RPi.GPIO_BP
 +
python setup.py install               
 +
sudo python setup.py install
 +
 +
[http://wiki.lemaker.org/RPi.GPIO Quelle:]

Version vom 28. Januar 2018, 10:43 Uhr

Armbian (Debian Server Mainline Kernel) (ab 1/2018)

Download

https://www.armbian.com/banana-pi-pro/

Infos zur Hardware

https://linux-sunxi.org/Banana_Pro

Erstanmeldung

Benutzer:

root

Kennwort:

1234

RPi.GPIO auf Banana Pro einrichten

Voraussetzungen: Paket sudo muss instaliert sein.

  • GIT installieren:
sudo apt-get update
sudo apt-get install git 
  • Paket herunterladen:
cd /root
git clone https://github.com/LeMaker/RPi.GPIO_BP -b bananapro
  • Installation:
sudo apt-get update
sudo apt-get install python-dev
  • Kompilieren und Installieren:
cd RPi.GPIO_BP
python setup.py install                 
sudo python setup.py install

Quelle: