aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@gar-ex-erdastep.localdomain>2011-11-25 18:34:16 +0100
committerroot <root@gar-ex-erdastep.localdomain>2011-11-25 18:34:16 +0100
commitcdd63b8f7c8adbbec5cb1ee50e8aa4152a69ab5e (patch)
tree29f3352dc1da46e3a182be18e6e1d5abd0987edc
parentb266b77da2b079e435fd3262f944f1701fd3957c (diff)
downloadPyMotionControl-cdd63b8f7c8adbbec5cb1ee50e8aa4152a69ab5e.tar.gz
PyMotionControl-cdd63b8f7c8adbbec5cb1ee50e8aa4152a69ab5e.tar.bz2
README written
-rw-r--r--MotionControl/Axis.py0
-rw-r--r--MotionControl/Constraint.py0
-rw-r--r--MotionControl/Motion.py0
-rw-r--r--MotionControl/Planner.py0
-rw-r--r--MotionControl/Stage.py0
-rw-r--r--MotionControl/__init__.py0
-rw-r--r--README27
-rw-r--r--scratchpad.py0
8 files changed, 27 insertions, 0 deletions
diff --git a/MotionControl/Axis.py b/MotionControl/Axis.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/Axis.py
diff --git a/MotionControl/Constraint.py b/MotionControl/Constraint.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/Constraint.py
diff --git a/MotionControl/Motion.py b/MotionControl/Motion.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/Motion.py
diff --git a/MotionControl/Planner.py b/MotionControl/Planner.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/Planner.py
diff --git a/MotionControl/Stage.py b/MotionControl/Stage.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/Stage.py
diff --git a/MotionControl/__init__.py b/MotionControl/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MotionControl/__init__.py
diff --git a/README b/README
index e69de29..1c3a340 100644
--- a/README
+++ b/README
@@ -0,0 +1,27 @@
+PyMotionControl
+
+Classes and modules for building motion control
+systems with Python.
+
+---
+
+PyMotionControl itself does not interface with
+actuator controllers. Instead the user of this
+library is required to derive from
+MotionControl.Axis.AxisBase and in the derived class
+interface with actuator control packages of choice.
+
+Axes are assembled into a so called "Stage". The class
+MotionControl.Stage.Stage provides general motion stage
+functionality. However one may choose to derive from it
+to form a application specific stage.
+
+---
+
+NOTE scratchpad.py:
+
+scratchpad.py is the source file where new things are
+tested and outlined, before they are moved into their
+proper module file. So all contents of it are
+work-in-progress, highly experimental and most likely
+not working in the state you see them there.
diff --git a/scratchpad.py b/scratchpad.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/scratchpad.py