Differences

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

Link to this comparison view

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