2015-02-05 20:14:31 +01:00
|
|
|
<!DOCTYPE html>
|
2015-02-05 16:05:29 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2015-02-05 20:14:31 +01:00
|
|
|
<title>Marlin Configurator</title>
|
2015-02-05 20:50:42 +01:00
|
|
|
<script src="js/jquery-2.1.3.min.js"></script>
|
2015-02-05 20:14:31 +01:00
|
|
|
<script src="js/binarystring.js"></script>
|
|
|
|
<script src="js/binaryfileuploader.js"></script>
|
2015-02-05 16:05:29 +01:00
|
|
|
<script src="js/jcanvas.js"></script>
|
|
|
|
<script src="js/jstepper.js"></script>
|
2015-02-05 20:50:42 +01:00
|
|
|
<script src="js/configurator.js"></script>
|
2015-02-05 16:05:29 +01:00
|
|
|
<link rel="stylesheet" href="css/configurator.css" type="text/css" media="all" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2015-02-05 20:14:31 +01:00
|
|
|
<section id="main">
|
2015-02-05 16:05:29 +01:00
|
|
|
<h1>Marlin Configurator 0.1a</h1>
|
|
|
|
<p>Enter values in the form, get a Marlin configuration.<br/>Will include a drop-down of known configurations.</p>
|
|
|
|
<ul id="help">
|
|
|
|
<li><strong>HELP</strong> - This is the help region</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<form id="config_form">
|
|
|
|
|
2015-02-05 20:14:31 +01:00
|
|
|
<label>Drop Files Here:</label><input type="file" id="file-upload" />
|
2015-02-05 16:05:29 +01:00
|
|
|
|
2015-02-05 20:14:31 +01:00
|
|
|
<label class="newline">Serial Port:</label><select name="SERIAL_PORT"></select><div id="serial_stepper"></div>
|
2015-02-05 16:05:29 +01:00
|
|
|
|
|
|
|
<label>Baud Rate:</label><select name="BAUDRATE"></select>
|
|
|
|
|
|
|
|
<label>AT90USB BT IF:</label>
|
|
|
|
<input name="BTENABLED" type="checkbox" value="1" checked />
|
|
|
|
|
|
|
|
<label class="newline">Motherboard:</label><select name="MOTHERBOARD"></select>
|
|
|
|
|
|
|
|
<label class="newline">Custom Name:</label><input name="CUSTOM_MENDEL_NAME" class="switchable" type="text" size="14" maxlength="12" value="" />
|
|
|
|
|
|
|
|
<label class="newline">Machine UUID:</label><input name="MACHINE_UUID" class="switchable" type="text" size="38" maxlength="36" value="" />
|
|
|
|
|
|
|
|
<label class="newline">Extruders:</label><select name="EXTRUDERS"></select>
|
|
|
|
|
|
|
|
<label class="newline">Power Supply:</label><select name="POWER_SUPPLY"></select>
|
|
|
|
|
|
|
|
<label>PS Default Off:</label>
|
|
|
|
<input name="PS_DEFAULT_OFF" type="checkbox" value="1" checked />
|
|
|
|
|
2015-02-05 17:19:09 +01:00
|
|
|
<label class="newline">Temp Sensor 0:</label><select name="TEMP_SENSOR_0"></select>
|
|
|
|
<label class="newline">Temp Sensor 1:</label><select name="TEMP_SENSOR_1"></select>
|
|
|
|
<label class="newline">Temp Sensor 2:</label><select name="TEMP_SENSOR_2"></select>
|
|
|
|
<label class="newline">Bed Temp Sensor:</label><select name="TEMP_SENSOR_BED"></select>
|
|
|
|
|
2015-02-05 16:05:29 +01:00
|
|
|
<h2>Marlin/Configuration.h</h2>
|
|
|
|
<pre id="config_text" class="prettyprint linenums"></pre>
|
|
|
|
<h2>Marlin/Configuration_adv.h</h2>
|
|
|
|
<pre id="config_adv_text" class="prettyprint linenums"></pre>
|
|
|
|
|
|
|
|
<br class="clear" />
|
|
|
|
</form>
|
2015-02-05 20:14:31 +01:00
|
|
|
<section>
|
2015-02-05 16:05:29 +01:00
|
|
|
</body>
|
|
|
|
</html>
|