Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
3d:tiko [2017/01/09 17:46] – external edit 127.0.0.13d:tiko [2017/03/20 14:45] (current) photonicsguy
Line 1: Line 1:
 +~~NOTOC~~
 ====== Tiko ====== ====== Tiko ======
 +I was fortunate enough to receive my Tiko for Christmas from batch #1. Starting on Christmas day I printed a bunch of owls, a benchy, and some other ornaments as well as the Tiko demo print.
  
 +[[https://www.youtube.com/watch?v=XeWvZ5rEbxo|Video of my first print]]
 +====== Things I've designed ======
  
-===== Notes ===== +  * [[https://www.thingiverse.com/Photonicsguy/about|Thingiverse]] 
-Cancel Tiko print job: <code bash>curl -X PUT "http://192.168.1.1/cancel"</code> +    * [[https://www.thingiverse.com/thing:2008874|Tiko build volume]] 
-Sending Tiko gcode: <code bash>curl -X PUT "http://192.168.1.1/gcode" -d "G0 F3000 X10 Y10 Z90"</code> +    * Top hat (for a failed owl print) 
-Turn off white LEDs: <code bash>curl -X PUT "http://192.168.1.1/leds/0"</code> +    * Camera mount in progress 
-Reboot printer: <code bash>curl -X POST "http://192.168.1.1/reboot"</code> +    *  
-GCODE download((This seems to cause the Tiko to reboot for larger gcode files, around 7MB.)): <code bash>curl "http://192.168.1.1/posted/gcode"</code>+====== Linux Shortcuts ====== 
 +Switch to Tiko network: <code bash>alias tiko='nmcli c up "Tiko"'</code> 
 +Run <code bash>alias tiko='nmcli c show'</code> first to identify your connection name
  
-==== Manually set temperature ==== 
  
 +
 +====== Notes ======
 +|Cancel Tiko print job|<code bash>curl -X PUT "http://192.168.1.1/cancel"</code>|
 +|Sending Tiko gcode|<code bash>curl -X PUT "http://192.168.1.1/gcode" -d "G0 F3000 X10 Y10 Z90"</code>|
 +|Turn off white LEDs|<code bash>curl -X PUT "http://192.168.1.1/leds/0"</code>|
 +|Reboot printer|<code bash>curl -X POST "http://192.168.1.1/reboot"</code>|
 +|GCODE download((This seems to cause the Tiko to reboot for larger gcode files, around 7MB.))|<code bash>curl "http://192.168.1.1/posted/gcode"</code>|
 +
 +====== Temperature readings ======
 Maximum temperature((FW: 2.0.3-t100.be5de67)) : 300°C Maximum temperature((FW: 2.0.3-t100.be5de67)) : 300°C
  
-Red LED is connected to the heater pwm. Solid red when it's coming up to temperature, flickering when it's holding temperature.+===== Method ===== 
 + 
 +A Type-K thermocouple was attached to the side of the heater and wrapped with several turns of Teflon plumbers tape to attach the thermocouple without risking melted tape or adhesive on the hotend. 
 + 
 +One consideration of using an IR thermometer is that the thermal emissivity of titanium will cause the IR thermometer to read low. Though this may not be a problem with plastic stuck on the nozzle or by taking the reading from the ceramic heater. 
 +===== Observations ===== 
 +Red LED is connected to the heater PWM. Solid red when it's coming up to temperature, flickering when it's holding temperature.
  
  
 +{{ :3d:tiko:tikothermaltest0.jpg?direct&300|}}
 ^Setpoint^Tmeasured(°C)^ΔT^ ^Setpoint^Tmeasured(°C)^ΔT^
 |100|100|0| |100|100|0|
 |110|109|-1| |110|109|-1|
-|120|118|-2|+|120|118|-2|h
 |130|127|-3| |130|127|-3|
 |140|136|-4| |140|136|-4|
Line 49: Line 70:
 |300|269|-31| |300|269|-31|
  
-===== Headline =====+===== Firmware =====
  
-Things I've made: +===== GCODE =====
-  * [[https://www.thingiverse.com/Photonicsguy/about|Thingiverse]] +
-    * [[https://www.thingiverse.com/thing:2008874|Tiko build volume]] +
-==== Software ==== +
- +
-  * [[http://slic3r.org/|Slic3r]] +
-    * [[https://github.com/alexrj/Slic3r/tree/master/xs/src/libslic3r|libslic3r]] - TODO:Edit in Tiko?? +
-  * [[http://www.openscad.org/|Openscad]] +
-    * [[http://www.openscad.org/cheatsheet/|Openscad cheatsheet]] +
-    *  +
-    * https://git.h3ron.com/heron/openscad-thumbnailers +
-  * [[http://www.meshlab.net/|Meshlab]] +
-  * [[https://ultimaker.com/en/products/cura-software|Cura]] +
-==== GCODE ====+
 ^TIKO^GCODE^Explanation^Proof/Test(('na' for when command is used in gcode from Tiko WIT))^ ^TIKO^GCODE^Explanation^Proof/Test(('na' for when command is used in gcode from Tiko WIT))^
 |Yes|G28|Home|na| |Yes|G28|Home|na|
Line 84: Line 92:
 |No|G20|Set Units to Inches|| |No|G20|Set Units to Inches||
 |No|G91|Relative mode ignored|| |No|G91|Relative mode ignored||
-|Yes|G92 E0|Reset Extrusion distance (Firmware understands but WIT will not render the preview correctly((Cannot reset X, Y, or Z))|{{:3d:tiko:gcode:g92_test.gcode|}}((Also used by the manual extrusion override))|+|Yes|G92 E0|Reset Extrusion distance (Firmware understands but WIT((TIKO Web Interface)) will not render the preview correctly((Cannot reset X, Y, or Z))|{{:3d:tiko:gcode:g92_test.gcode|}}((Also used by the manual extrusion override))|
 |No|M114|Get Current Position|| |No|M114|Get Current Position||
 |No|M105|Get Extruder Temperature|| |No|M105|Get Extruder Temperature||
  
  
 +====== Software ======
  
 +  * [[http://slic3r.org/|Slic3r]]
 +    * [[https://github.com/alexrj/Slic3r/tree/master/xs/src/libslic3r|libslic3r]] - TODO:Edit in Tiko??
 +  * [[http://www.openscad.org/|OpenSCAD]]
 +    * [[http://www.openscad.org/cheatsheet/|OpenSCAD cheatsheet]]
 +    * https://git.h3ron.com/heron/openscad-thumbnailers
 +    * https://github.com/sjkelly/EagleToOpenSCAD
 +  * Inkscape
 +    * [[https://github.com/l0b0/paths2openscad|Inkscape - SVG paths to OpenSCAD]]
 +  * [[http://www.meshlab.net/|Meshlab]]
 +  * [[https://ultimaker.com/en/products/cura-software|Cura]]
  • 3d/tiko.1484012817.txt.gz
  • Last modified: 2017/01/09 18:29
  • (external edit)