This is an old revision of the document!
Tiko
Notes
Cancel Tiko print job:
curl -X PUT "http://192.168.1.1/cancel"
Sending Tiko gcode:
curl -X PUT "http://192.168.1.1/gcode" -d "G0 F3000 X10 Y10 Z90"
Turn off white LEDs:
curl -X PUT "http://192.168.1.1/leds/0"
Reboot printer:
curl -X POST "http://192.168.1.1/reboot"
GCODE download1):
curl "http://192.168.1.1/posted/gcode"
Manually set temperature
Maximum temperature2) : 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.
Setpoint | Tmeasured(°C) | ΔT |
---|---|---|
100 | 100 | 0 |
110 | 109 | -1 |
120 | 118 | -2 |
130 | 127 | -3 |
140 | 136 | -4 |
150 | 146 | -4 |
160 | 155 | -5 |
170 | 164 | -6 |
180 | 173 | -7 |
190 | 182 | -8 |
200 | 190 | -10 |
205 | 195 | -10 |
210 | 199 | -11 |
215 | 203 | -12 |
220 | 207 | -13 |
225 | 211 | -14 |
230 | 215 | -15 |
235 | 219 | -16 |
240 | 223 | -17 |
245 | 227 | -18 |
250 | 231 | -19 |
255 | 235 | -20 |
260 | 239 | -21 |
265 | 243 | -22 |
270 | 249 | -21 |
275 | 253 | -22 |
280 | 258 | -22 |
285 | 261 | -24 |
290 | 265 | -25 |
295 | 267 | -28 |
300 | 269 | -31 |
Things I've made
-
- Camera mount - in progress
Software
-
- libslic3r - TODO:Edit in Tiko??
-
GCODE
TIKO | GCODE | Explanation | Proof/Test3) |
---|---|---|---|
Yes | G28 | Home | na |
Yes | G29 | Autolevel (Preceded by M670 D0) | na |
Yes | G34 Z0 | Unknown | na |
Yes | M104 S210 | Set Extruder Temperature to 210°C | na |
Yes | M109 S210 | Set Extruder Temperature to 210°C and Wait | na |
Yes | M670 D0 | Zprobe feedrate, specific to autolevel?? | na |
Yes | M906 E0.35 | Set extruder motor current | na |
Yes | M906 D0.22 | Set delta motor current | na |
Yes | M906 T0.22 | Set current during travelling (G0) | na |
Yes | M204 P800 | Set general acceleration | na |
Yes | M205 X0.05 | Set junction deviation | na |
Yes | G0 F900 Z0.200 | Movement command | na |
Yes | G1 X10.003 Y4.3 E20.2 | Extrude command | na |
No | G24) | Extrude CW Arc | na |
No | G35) | Extrude CCW Arc | na |
Yes | G4 S7 | Pause for 7 seconds6) | na |
No | G20 | Set Units to Inches | |
No | G91 | Relative mode ignored | |
Yes | G92 E0 | Reset Extrusion distance (Firmware understands but WIT will not render the preview correctly7) | g92_test.gcode8) |
No | M114 | Get Current Position | |
No | M105 | Get Extruder Temperature |
1)
This seems to cause the Tiko to reboot for larger gcode files, around 7MB.
2)
FW: 2.0.3-t100.be5de67
3)
'na' for when command is used in gcode from Tiko WIT
4)
G2 F300 X10 Y10 I5 J5 E0
5)
G3 F300 X10 Y10 I5 J5 E0
6)
or G4 P300 for 300 milliseconds
7)
Cannot reset X, Y, or Z
8)
Also used by the manual extrusion override