I think this project will be useful for people, who uses Octoprint.
It's a screen with colorful backlight that shows you some information about printing progress. It works with Octoprint API to get all the information about current process. Python script connects to Arduino Leonardo (you can use any with usb port. I used Leo, because I had had it before) and gives it some info. Also you can control your printer through this device.
Step 1: Getting Octoprint API KeyYou need to have API key.
Save it.
Step 2: Setting Up Your Raspberry to Run Python ScriptAt first you need to connect to your raspberry through ssh.
Then login and type this command
sudo apt-get install python3-pip
Then you need to install some python packages
sudo pip3 install pyserial
After all installations download python script from Github page
Type in ssh terminal sudo nano port.py
, then copy all from octoprint-monitor.py and paste in terminal. In variable API you need to paste your Octoprint API key. You can paste through clicking on the right button of your mouse. After that press Ctrl + X, type "y" and press Enter.
Then make logMaster.py file through sudo nano logMaster.py
, then copy all from octoprint-monitor.py and paste in terminal. You can paste through clicking on the right button of your mouse. After that pres Ctrl + X, type "y" and press Enter.
Then make command sudo python3 port.py
If you have an error, check previous steps.
If you see "
Connecting...
Connected.
" in your terminal all is ok. Press Ctrl+C.
Step 3: Printing Case for LCD ScreenI have LCD 20x4 screen.
You need to print a file from this link
Step 4: Connect All to ArduinoOn this picture you can see wiring diagram. Connect lcd display to arduino.
- Then connect buzzer to 9th pin
- Button 1 to 7th pin
- Button 2 - 8th
- Button 3 - 10
- Button 4 - 13
- Temperature sensor - pin 0
- LED strip - pin 6
After that fix it all on printers side, glue lcd and buttons to the printed case. Fix the case with double sided tape.
Connect arduino to raspberry pi with usb cable.
Connect power supply to arduino and LED strip as on the picture.
Step 5: Uploading Sketch to ArduinoYou need to download file octoprint-monitor.ino from github and upload it to arduino.
You'll need some libraries.
- Liquid Crystal (It's already installed to Arduino IDE)
Then connect arduino to raspberry pi.
Step 6: Checking That All Is OkUPDATE: Auto port detection added! Now you don't need to find arduino's port.
Launch python code. If you see text "Connected serial", all is ok.
Step 7: Setting Up Script to Auto Start UpHow to add script to auto start up on raspberry pi?
It's easy. You need to type
sudo crontab -e
And add at the end of the file only one line.
@reboot /usr/bin/python3 /home/pi/port.py
That's all. Now reboot your raspberry and verify all.
Step 8: FinishingNow the last step.
Check all and if something isn't well, write a comment with your problem.
Thank you for your attention!
Comments
Please log in or sign up to comment.