diff options
| author | Simon John <git@the-jedi.co.uk> | 2014-03-24 13:27:36 +0000 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2014-04-02 18:57:00 +0530 |
| commit | 392a6b9db1ce64099c15daa61c2e2ca964f95453 (patch) | |
| tree | b1cf398af8b0f6c281da177cd428581fdac0cf61 /README.md | |
| parent | 5599d2ab1e23d66640b53e3951f92102f933fbdc (diff) | |
replace perl reset script with python one
Fix #180
Fix #127
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -34,30 +34,36 @@ package and can be installed using `apt-get` or `aptitude`. You need to have the Arduino IDE. You can either install it through the installer or download the distribution zip file and extract it. -The Makefile also delegates resetting the board to a short Perl program. -You'll need to install `Device::SerialPort` to use it though. +The Makefile also delegates resetting the board to a short Python program. +You'll need to install `pySerial` to use it though. On Debian or Ubuntu: - apt-get install libdevice-serialport-perl + apt-get install python-serial On Fedora: - yum install perl-Device-SerialPort + yum install pyserial On openSUSE: - zypper install perl-Device-SerialPort + zypper install python-serial On Mac using MacPorts: - sudo port install p5-device-serialport + sudo port install py27-serial - and use /opt/local/bin/perl5 instead of /usr/bin/perl +On Windows: + + pySerial can be downloaded from PyPi On other systems: - cpan Device::SerialPort + pip install pyserial + + or + + easy_install -U pyserial ## Usage |
