-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 239e25e
Showing
131 changed files
with
8,012 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 48b478eea9386c5b6931925b620a4628 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
================== | ||
Carousel ATC Setup | ||
================== | ||
|
||
TODO | ||
|
||
.. image:: images/mill/atc.png | ||
:align: center |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
========================= | ||
Customisation with Python | ||
========================= | ||
|
||
It is possible to make a simple customisations to the user interface, like renaming a button, by overriding the main window provider in you ``custom_config.yml`` and a simple python class that extends ``ProbeBasic`` | ||
|
||
These changes can be achieved with the standard instal of Probe Basic, no need for a Development install. Though you may need to dig into the ``probe_basic.ui`` file in Qt Designer to find the needed widget names (``editvcp probe_basic``). | ||
|
||
Button Renaming Example | ||
----------------------- | ||
|
||
In the following python example the **FLOOD** button is rename to **FOO** and the **MIST** button is renamed to **BAR** | ||
|
||
.. image:: images/custom_ux_labels.png | ||
:align: center | ||
|
||
To try out the following yourself, save the python below to a file called ``custom_probebasic.py`` under your machine config directory (``~/linuxcnc/configs/{my_machine}/custom_probebasic.py``). | ||
|
||
.. code:: python | ||
from probe_basic.probe_basic import ProbeBasic | ||
class CustomProbeBasic(ProbeBasic): | ||
"""Main window class for the ProbeBasic VCP. | ||
save this file as `custom_probebasic.py` in you configs directory | ||
then your custom_config.yml add the `provider:` line below to the `mainwidow: section` | ||
``` | ||
windows: | ||
mainwindow: | ||
provider: custom_probebasic:CustomProbeBasic | ||
kwargs: | ||
confirm_exit: false | ||
``` | ||
""" | ||
def __init__(self, *args, **kwargs): | ||
super(CustomProbeBasic, self).__init__(*args, **kwargs) | ||
# rename the Flood button | ||
self.flood_button.setText("Foo") | ||
# rename the Mist button | ||
self.mist_button.setText("Bar") | ||
Then edit the ``~/linuxcnc/configs/{my_machine}/custom_config.yml`` file and add the line ``provider: custom_probebasic:CustomProbeBasic`` just under ``mainwindow:`` | ||
|
||
**Before:** | ||
|
||
.. code:: yaml | ||
windows: | ||
mainwindow: | ||
kwargs: | ||
confirm_exit: false | ||
**After:** | ||
|
||
.. code:: yaml | ||
windows: | ||
mainwindow: | ||
provider: custom_probebasic:CustomProbeBasic | ||
kwargs: | ||
confirm_exit: false | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
=================== | ||
Development Install | ||
=================== | ||
|
||
|
||
**Probe Basic Development Installation Guide** | ||
|
||
|
||
**Note: Probe Basic is currently designed for 1920x1080 screen sizes only!** | ||
|
||
**For Whatever reason mesa ehternet setups go much more smoothly when a wired ethernet internet connection is used during linux installation. The debian installer does some magic that sets up the network perfectly with only one minor tweak once installed. The wireless setup after install is much easier to get working. I HIGHLY RECOMMEND using the wired internet connection and choosing to setup that connection during installation to avoid unforeseen issues in connecting to the mesa card(s) post install.** | ||
|
||
|
||
**1- Download the Linuxcnc ISO Image File** | ||
|
||
:: | ||
|
||
http://www.linuxcnc.org/downloads/ | ||
|
||
Select the "LinuxCNC 2.8.0 Debian 10 Buster PREEMPT-RT ISO" option. you will need to make a bootable dvd or USB thumb drive depending on how you plan to install. The below software is extremely easy and works flawlessly with linux debian OS images. Below is the link for it. I recommend using 2-4gb USB drive for quicker flashing. | ||
|
||
:: | ||
|
||
https://www.balena.io/etcher/?ref=etcher_update | ||
|
||
Once you have created your flash stick for linuxcnc proceed to install and boot the system. (note: It is advised to have an ethernet cable internet connection during install). Select the graphical installation option. Follow the steps on screen to complete installation. | ||
|
||
After installation, copy the following in the main terminal one line at a time and hit enter, select Y for yes if asked at any point during installation. | ||
|
||
:: | ||
|
||
sudo apt update | ||
|
||
sudo apt upgrade | ||
|
||
|
||
|
||
**2- Start Linuxcnc first time** | ||
|
||
Now linuxcnc needs to be started for the first time for it to create its directory folders. This can be done by the drop down menu and selecting CNC and then LinuxCNC. After the program has started, you can shut it down and continue below. | ||
|
||
|
||
**3- Install qtpyvcp dependencies** | ||
|
||
Copy the following in the main terminal it is all one line, hit enter, select Y for yes f asked at any point during installation. | ||
|
||
:: | ||
|
||
sudo apt install python-pyqt5 python-pyqt5.qtquick python-dbus.mainloop.pyqt5 python-pyqt5.qtopengl python-pyqt5.qsci python-pyqt5.qtmultimedia python-pyqt5.qtwebkit qml-module-qtquick-controls gstreamer1.0-plugins-bad libqt5multimedia5-plugins pyqt5-dev-tools python-dev python-setuptools python-pip git: | ||
|
||
:: | ||
|
||
sudo apt install qttools5.dev qttools5-dev-tools python-pip | ||
|
||
|
||
**4- Install qtpyvcp** | ||
|
||
Copy the following in the main terminal, hit enter, select Y for yes if asked at any point during installation. | ||
|
||
:: | ||
|
||
git clone https://github.com/kcjengr/qtpyvcp qtpyvcp | ||
|
||
cd qtpyvcp | ||
|
||
pip install --editable . | ||
|
||
cd | ||
|
||
cd ~/qtpyvcp/pyqt5designer/Qt5.7.1-64bit/ | ||
|
||
sudo ./install.sh | ||
|
||
cp ~/qtpyvcp/scripts/.xsessionrc ~/ | ||
|
||
**IMPORTANT: now Log Off of Linux, then Log In again for the previous installation to take effect, then continue with step 6 after in a main terminal!** | ||
|
||
|
||
**5- Install probe_basic** | ||
|
||
Copy the following in the main terminal, hit enter. | ||
|
||
:: | ||
|
||
git clone https://github.com/kcjengr/probe_basic.git | ||
|
||
|
||
**6- Setup the probe_basic directory and install using pip.** | ||
|
||
From the main terminal paste the following and press enter after each, if asked, type Y and enter to continue install. | ||
|
||
:: | ||
|
||
cd probe_basic | ||
|
||
qcompile . | ||
|
||
pip install -e . | ||
|
||
cd | ||
|
||
cp -r ~/probe_basic/probe_basic/fonts/ ~/.local/share/ | ||
|
||
cp -r ~/probe_basic/config/probe_basic/ ~/linuxcnc/configs/ | ||
|
||
And install the conversational widgets | ||
|
||
:: | ||
|
||
pip install git+https://github.com/kcjengr/qtpyvcp_conversational_gcode.git | ||
|
||
|
||
More details about conversational widgets: | ||
|
||
https://github.com/kcjengr/qtpyvcp_conversational_gcode | ||
|
||
**7- Edit probe_basic** | ||
|
||
To be able to edit the probe_basic gui, you will enter the following in the main terminal. | ||
|
||
:: | ||
|
||
editvcp probe_basic | ||
|
||
|
||
**8- You are Finished with Installation!** | ||
|
||
This should complete the installation of QtPyVCP and the probe_basic GUI, you can now run the sim to get to know it, as well open and play with the GUI design. If you would like to make a Desktop Icon to launch the editor for probe_basic, follow the below instructions: | ||
|
||
right click on the desktop and select "Create Launcher" | ||
|
||
In the field entries you can put the following information: | ||
|
||
**NOTE: for the command line be sure to change the "YOUR_COMPUTER_NAME_HERE" for you actual computer name, for example /home/jacob/.local/bin/editvcp probe_basic or the launcher will give an error!** | ||
|
||
:: | ||
|
||
Name: QTDesigner | ||
|
||
Comment: probe_basic gui editor | ||
|
||
Command: /home/YOUR_COMPUTER_NAME_HERE/.local/bin/editvcp probe_basic | ||
|
||
Working Directory: | ||
|
||
Press the Save button once completed. | ||
|
||
The first launch select Mark Executable when prompted. | ||
|
||
|
||
**9- Congratualtions you have made it through and should be ready to start having fun!** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.. ProbeBasic documentation master file, created by | ||
sphinx-quickstart on Sun Sep 29 11:22:41 2019. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
.. image:: _static/icon.png | ||
|
||
Probe Basic | ||
=========== | ||
|
||
ProbeBasic is a `QtPyVCP <http://www.qtpyvcp.com/>`_ based user interface | ||
for the `LinuxCNC <http://linuxcnc.org/>`_ machine control. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Installation: | ||
|
||
quick_start_apt | ||
quick_start | ||
dev_install | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Configuration: | ||
|
||
machine_config | ||
atc_setup | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Interface: | ||
|
||
Mill <mill_interface> | ||
Lathe <lathe_interface> | ||
probing | ||
tool_length_setter | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Extending: | ||
|
||
user_tabs | ||
custom_ux_hacking | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
========================================== | ||
Probe Basic Lathe Interface | ||
========================================== | ||
|
||
Main | ||
---- | ||
.. image:: images/lathe/01_Main.png | ||
:align: center | ||
|
||
File | ||
---- | ||
.. image:: images/lathe/02_File.png | ||
:align: center | ||
|
||
Offsets | ||
------- | ||
.. image:: images/lathe/03_Offsets.png | ||
:align: center | ||
|
||
Touch Off | ||
--------- | ||
.. image:: images/lathe/04_Touch_Off.png | ||
:align: center | ||
|
||
Tool Table | ||
---------- | ||
.. image:: images/lathe/05_Tool_Table.png | ||
:align: center | ||
|
||
Probing | ||
------- | ||
.. image:: images/lathe/06_Probing.png | ||
:align: center | ||
|
||
Conversational | ||
-------------- | ||
.. image:: images/lathe/07_Conversational.png | ||
:align: center | ||
|
||
Settings | ||
-------- | ||
.. image:: images/lathe/08_Settings.png | ||
:align: center | ||
|
||
Status | ||
------ | ||
.. image:: images/lathe/09_Settings.png | ||
:align: center | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
=================================== | ||
Machine Configuration (INI and HAL) | ||
=================================== | ||
|
||
TODO | ||
|
||
https://forum.linuxcnc.org/qtpyvcp/48401-py3-probe-basic-config-conversion-doc-lcnc-2-9 | ||
|
Oops, something went wrong.