diff --git a/README.md b/README.md
index fc3bfc7..984ec0b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Mousse
======
-Mousse is a project for a Web-based control interface for CNC machines ( 3D printers, laser cutters, CNC mills etc )
+Mousse is a project for a Web-based control interface for CNC machines ( 3D printers, laser cutters, CNC mills, etc )
This is initially intended to be used with Smoothieboard using it's on-board Ethernet connector. However, future plans include support for other boards, and an executable serving the interface.
@@ -9,10 +9,10 @@ This is initially intended to be used with Smoothieboard using it's on-board Eth
## Project goals
-* Universal controller interface for 3D printers, Lasers and CNC mills
+* Universal controller interface for 3D printers, Lasers, and CNC mills
* Incorporate design tools and G-Code generation
-* Oriented towards easy use and ergonomy
-* Ability to fully redegin/configure the interface, and design vendor-specific interfaces
+* Oriented towards ease of use and ergonomy
+* Ability to fully redesign/configure the interface, and design vendor-specific interfaces
* Wizards for everything
* Fully modular code ( on the model of the Smoothie firmware ) to make it as easy as possible to contribute
* Dashboard
@@ -46,4 +46,3 @@ GPL v3
Contact the Smoothie community or wolf.arthur@gmail.com
Contributions are very welcome !
-
diff --git a/dev.html b/dev.html
index d626f77..ea36389 100644
--- a/dev.html
+++ b/dev.html
@@ -57,19 +57,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -91,10 +119,16 @@
+
+
+
+
+
+
@@ -125,6 +159,8 @@
+
+
@@ -165,26 +201,66 @@
+ var printstatuswidget = new Printstatuswidget();
+ kernel.add_module( "printstatuswidget", printstatuswidget );
+
+
+
var robot = new Robot();
kernel.add_module( "robot", robot );
+ var temperaturecontrolwidget = new Temperaturecontrolwidget();
+ kernel.add_module( "temperaturecontrolwidget", temperaturecontrolwidget );
+
+
+
+ var temperaturewidget = new Temperaturewidget();
+ kernel.add_module( "temperaturewidget", temperaturewidget );
+
+
+
var updater = new Updater();
kernel.add_module( "updater", updater );
+ var widgetcontroller = new Widgetcontroller();
+ kernel.add_module( "widgetcontroller", widgetcontroller );
+
+
+
+ var consolewidget = new Consolewidget();
+ kernel.add_module( "consolewidget", consolewidget );
+
+
+
var dropboxclient = new Dropboxclient();
kernel.add_module( "dropboxclient", dropboxclient );
+ var extrusionwidget = new Extrusionwidget();
+ kernel.add_module( "extrusionwidget", extrusionwidget );
+
+
+
+ var fancontrolwidget = new Fancontrolwidget();
+ kernel.add_module( "fancontrolwidget", fancontrolwidget );
+
+
+
var gui = new Gui();
kernel.add_module( "gui", gui );
+ var joggingwidget = new Joggingwidget();
+ kernel.add_module( "joggingwidget", joggingwidget );
+
+
+
var navigation = new Navigation();
kernel.add_module( "navigation", navigation );
@@ -319,19 +395,87 @@
+
+