File tree 1 file changed +0
-20
lines changed
1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -282,26 +282,6 @@ Install Bridge and Servo libraries
282
282
283
283
arduino --install-library "Bridge:1.0.0,Servo:1.2.0"
284
284
285
- BUGS
286
- ----
287
-
288
- Even in command line mode the Arduino IDE requires a graphical user interface to be
289
- present. This should usually be the case in Windows or Mac OS X. On Linux however you
290
- might want to compile and upload sketches when logged in via SSH or in batch mode. To
291
- accomplish this, install the Xvfb dummy X server and write a small wrapper script to
292
- create an instance of this Xserver, run the Arduino IDE in it and kill the Xserver
293
- afterwards:
294
-
295
- #!/bin/bash
296
- Xvfb :1 -nolisten tcp -screen :1 1280x800x24 &
297
- xvfb="$!"
298
- DISPLAY=:1 arduino "$@"
299
- kill -9 $xvfb
300
-
301
- Save the script as *arduino-headless* and run it with the options described above.
302
- If the script does not return to a shell prompt, the options you specified were wrong
303
- and the Arduino IDE actually opened a window, stop its execution with Ctrl+C.
304
-
305
285
HISTORY
306
286
-------
307
287
1.5.2::
You can’t perform that action at this time.
0 commit comments