aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorWolfgang Draxinger <Wolfgang.Draxinger@draxit.de>2011-12-02 18:30:50 +0100
committerWolfgang Draxinger <Wolfgang.Draxinger@draxit.de>2011-12-02 18:30:50 +0100
commit68d1ddf0e3e781d4fe2f00317b06f3b501d2ad69 (patch)
tree3387b6cfc948597018ed18de147e77620e4ede2d /README
parentcd5064f5b2a96514c4fd00d32b4c933e8eeebb10 (diff)
parente44a59d65e1556c96756f72235fc2f37a989bfe3 (diff)
downloadPyMotionControl-68d1ddf0e3e781d4fe2f00317b06f3b501d2ad69.tar.gz
PyMotionControl-68d1ddf0e3e781d4fe2f00317b06f3b501d2ad69.tar.bz2
scratchpad merged
Diffstat (limited to 'README')
-rw-r--r--README27
1 files changed, 27 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..1c3a340
--- /dev/null
+++ 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.