OctoPrint: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
(Created page with "= Setup OctoPrint = == Build == <pre> $ git clone https://github.com/foosel/OctoPrint.git $ cd OctoPrint $ virtualenv venv $ ./venv/bin/python setup.py install </pre> == Run...")
 
No edit summary
Line 1: Line 1:
Using a Raspberry Pi3 running Rasbian 8
= Setup OctoPrint =
= Setup OctoPrint =
Add your user to the dialout group;
<pre>
$ usermod -a -G dialout drew
</pre>
== Build ==
== Build ==
<pre>
<pre>
Line 9: Line 16:


== Run ==
== Run ==
<pre>
$ cd ~/OctoPrint
$ cd ~/OctoPrint
$ venv/local/bin/octoprint  
$ venv/local/bin/octoprint  
</pre>


== Browse ==
== Browse ==
Line 30: Line 39:


= Setup mjpg-streamer =
= Setup mjpg-streamer =
Add your user to the video group;
<pre>
$ usermod -a -G video drew
</pre>
== Build ==
== Build ==
<pre>
<pre>
Line 39: Line 53:
== Run ==  
== Run ==  
<pre>
<pre>
$ sudo ./mjpg_streamer -i "./input_uvc.so -r 1280x720" -o "./output_http.so"
$ ./mjpg_streamer -i "./input_uvc.so -r 1280x720" -o "./output_http.so"
</pre>
</pre>



Revision as of 19:59, 16 July 2016

Using a Raspberry Pi3 running Rasbian 8

Setup OctoPrint

Add your user to the dialout group;

$ usermod -a -G dialout drew

Build

$ git clone https://github.com/foosel/OctoPrint.git
$ cd OctoPrint
$ virtualenv venv
$ ./venv/bin/python setup.py install

Run

$ cd ~/OctoPrint
$ venv/local/bin/octoprint 

Browse

Add plugins

  • Settings > Plugin-in Manager
    • SnapStream (0.2.3)
    • CuraEngine
    • DisplayProgress
    • Cost estimator
    • DisplayZ
    • EEPROM Marlin Editor
    • Navbar Temp
    • Filament Sensor
    • Print History
    • Printer Statistics
    • StatusLine

Setup mjpg-streamer

Add your user to the video group;

$ usermod -a -G video drew

Build

$ git clone https://github.com/jacksonliam/mjpg-streamer.git
$ cd mjpg-streamer-experimental
$ make

Run

$  ./mjpg_streamer -i "./input_uvc.so -r 1280x720" -o "./output_http.so"

Browse