My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <html>
  2. <head>
  3. <title>Marlin Configurator</title>
  4. <meta charset="UTF-8">
  5. <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
  6. <script src="js/configurator.js"></script>
  7. <script src="js/jcanvas.js"></script>
  8. <script src="js/jstepper.js"></script>
  9. <link rel="stylesheet" href="css/configurator.css" type="text/css" media="all" />
  10. </head>
  11. <body>
  12. <div id="main">
  13. <h1>Marlin Configurator 0.1a</h1>
  14. <p>Enter values in the form, get a Marlin configuration.<br/>Will include a drop-down of known configurations.</p>
  15. <ul id="help">
  16. <li><strong>HELP</strong> - This is the help region</li>
  17. </ul>
  18. <form id="config_form">
  19. <!-- label>Serial Port:</label><input name="SERIAL_PORT" type="text" size="4" maxlength="2" value="99" / -->
  20. <label>Serial Port:</label><select name="SERIAL_PORT"></select><div id="serial_stepper"></div>
  21. <label>Baud Rate:</label><select name="BAUDRATE"></select>
  22. <label>AT90USB BT IF:</label>
  23. <input name="BTENABLED" type="checkbox" value="1" checked />
  24. <label class="newline">Motherboard:</label><select name="MOTHERBOARD"></select>
  25. <label class="newline">Custom Name:</label><input name="CUSTOM_MENDEL_NAME" class="switchable" type="text" size="14" maxlength="12" value="" />
  26. <label class="newline">Machine UUID:</label><input name="MACHINE_UUID" class="switchable" type="text" size="38" maxlength="36" value="" />
  27. <label class="newline">Extruders:</label><select name="EXTRUDERS"></select>
  28. <label class="newline">Power Supply:</label><select name="POWER_SUPPLY"></select>
  29. <label>PS Default Off:</label>
  30. <input name="PS_DEFAULT_OFF" type="checkbox" value="1" checked />
  31. <h2>Marlin/Configuration.h</h2>
  32. <pre id="config_text" class="prettyprint linenums"></pre>
  33. <h2>Marlin/Configuration_adv.h</h2>
  34. <pre id="config_adv_text" class="prettyprint linenums"></pre>
  35. <br class="clear" />
  36. </form>
  37. </div>
  38. </body>
  39. </html>