Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
python_serial [2014/10/18 00:32]
admin created
python_serial [2014/10/24 15:32] (current)
admin
Line 1: Line 1:
 ---- ----
-Python Serial+**Python Serial**
 ---- ----
 +**pyserial 2.7**\\
 +[[https://pypi.python.org/pypi/pyserial]]
  
-instal Python-Serial: +**Dokumentation**\\ 
-$ sudo apt-get update +[[http://pyserial.sourceforge.net/]]
-$ sudo apt-get install python-serial+
  
 +**Install:**\\
 +  $ sudo apt-get update
 +  $ sudo apt-get install python-serial
  
 +**Example**\\
 +  >>> import serial
 +  >>> UART = serial.Serial("/dev/ttyAMA0", baudrate=9600)
 +  >>> UART.write("\n")