File tree Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -6,22 +6,31 @@ This code controls the servos and the scale and communicates with the PC using a
6
6
Dependencies
7
7
============
8
8
Debian:
9
+
9
10
```
10
- sudo apt-get install arduino python-pip picocom
11
- sudo pip install ino pyserial
11
+ sudo apt-get install make avrdude
12
12
```
13
13
14
- Fedora:
14
+ See also .travis.yml:
15
+
15
16
```
16
- sudo yum install arduino python-pip picocom
17
- sudo pip install ino pyserial
17
+ cd /tmp/
18
+ wget https://downloads.arduino.cc/arduino-1.8.9-linux64.tar.xz
19
+ tar xf arduino-1.8.9-linux64.tar.xz
20
+ sudo mv arduino-1.8.9 /opt
18
21
```
19
-
22
+
23
+ (Arduino from apt is way too old, also 1.8.5 seems to make troubles for some
24
+ reason.)
25
+
26
+
20
27
Compile + Upload + Connect to serial
21
28
====================================
22
- make
29
+ make && ./upload.sh
30
+
31
+ See Makefile for details. Currently mega2560 used, Makefile and upload.sh needs
32
+ to be adapted (see 0721c72e).
23
33
24
- See Makefile for details. Tested with Arduino Duemilanove and Arduino Leonardo.
25
34
26
35
Serial Interface
27
36
=====================
You can’t perform that action at this time.
0 commit comments