Skip to content

Commit ff9b8f3

Browse files
author
unknown
committed
Merged develop into master
2 parents 32bf0db + 909f6e8 commit ff9b8f3

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

ReleaseNotes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
Changelog
2+
# 0.10.12
3+
# 0.10.12-b (12 jan 2017)
4+
- Post install update to config for changes in 0.10.10 (fixes print3d logging)
5+
6+
# 0.10.12-a (26 jul 2016)
7+
- Added Ultimaker Original Plus (Thanks Remco)
8+
- Added extra usb drivers
29

310
# 0.10.11
411
# 0.10.11-a (25 may 2016)
512
- After pressing the reset button for about 4 seconds the WiFi-Box will go to access point mode. Useful for when you can't reach it.
6-
- Becomes access point when it can't connect to WiFi network.
13+
- Becomes access point when it can't connect to WiFi network.
714
- Handles more clients by tweaking the uhttpd config.
815
- Print3D isn't killed when there is no memory available.
916
- New banner (shown after ssh login)

post-install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ else
138138
uci set wifibox.general.system_log_level='info'
139139
uci -q delete wifibox.system.loglevel # remove key used in older versions (<=0.10.8a) if it exists
140140
141+
# update wifibox's config for config changes in 0.10.10
142+
uci set wifibox.system.log_path='/tmp'
143+
uci set wifibox.system.api_log_filename='wifibox.log'
144+
uci set wifibox.system.p3d_log_basename='print3d'
145+
141146
crontab -l 2> /dev/null | grep logrotate\.conf > /dev/null
142147
if [ $? -ne 0 ]; then
143148
# add line, method from http://askubuntu.com/a/58582

src/FIRMWARE-VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.11
1+
0.10.12

src/conf_defaults.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ M.printer_heatedbed = {
186186
default_colido_m2020 = true,
187187
default_colido_x3045 = true,
188188
default_craftbot_plus = true,
189+
default_ultimaker_original_plus = true,
189190
subSection = 'printer_type',
190191
type = 'bool',
191192
description = 'Printer has heated bed',
@@ -204,6 +205,7 @@ M.printer_filamentThickness = {
204205
local default_makerbot_startcode = ';@printer {printerType}\nM136 (enable build)\nM73 P0 (Set build percentage to 0)\nG162 X Y F2000 (home XY axes to maximum)\nG161 Z F900 (home Z axis to minimum quick)\nG92 X0 Y0 Z0 A0 B0 (set axis positions to 0)\nG1 Z5.0 F900 (move Z axis down)\nG161 Z F100 (home Z axis to minimum more precise)\nG92 X0 Y0 Z0 A0 B0 (set axis positions to 0)\nG1 Z2.0 F900 (move Z axis to safety height)\nG1 X-264 Y-145 Z0 F3300.0 (move XY to start position)\nG92 X0 Y0 Z0 A0 B0 (set axis position to 0)\nG130 X20 Y20 A20 B20 (Lower stepper Vrefs while heating)\n{if heatedBed}M140 S{printingBedTemp} T0 (Set bed temp)\nM135 T0 (use first extruder)\nM104 S{printingTemp} T0 (set extruder temp)\nM133 T0 (Wait for extruder)\nG130 X127 Y127 A127 B127 (Set Stepper motor Vref to defaults)\nG1 F100 A10 (extrude 10mm)\nG92 A0 (reset extruder)\nG0 Z20 (move up, to lose filament)'
205206
local default_deltabot_startcode = ';Generated with Doodle3D (deltabot)\nM109 S{printingTemp} ;set target temperature\n{if heatedBed}M190 S{printingBedTemp} ;set target bed temperature\nG21 ;metric values\nG91 ;relative positioning\nM107 ;start with the fan off\nG28 ; move to home\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\nM117 Printing Doodle... ;display message (20 characters to clear whole screen)'
206207
local default_ultimaker2_startcode = ';Generated with Doodle3D (ultimaker2)\nM10000\nM10000\nM10001 X8 Y28 SDoodle3D heat up...\nM109 S{printingTemp} ;set target temperature \n{if heatedBed}M190 S{printingBedTemp} ;set target bed temperature\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ; home to endstops\nG1 Z15 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nM10000\nM10000\nM10001 X8 Y28 SDoodle3D printing...\n'
208+
local default_ultimaker_original_plus_startcode = ';Generated with Doodle3D (Ultimaker Original Plus)\n{if heatedBed}M190 S{printingBedTemp}\nM109 S{printingTemp}\nG21 ;metric values\nG91 ;relative positioning\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG92 E0 ;zero the extruded length again\nG1 F9000\nG90 ;absolute positioning\nM117 Printing Doodle... ;display message (20 characters to clear whole screen)'
207209
M.printer_startcode = {
208210
default = ';Generated with Doodle3D (default)\nM109 S{printingTemp} ;set target temperature \n{if heatedBed}M190 S{printingBedTemp} ;set target bed temperature\nG21 ;metric values\nG91 ;relative positioning\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG92 E0 ;zero the extruded length again\nG1 F9000\nG90 ;absolute positioning\nM117 Printing Doodle... ;display message (20 characters to clear whole screen)',
209211
default_ultimaker2 = default_ultimaker2_startcode,
@@ -217,6 +219,7 @@ M.printer_startcode = {
217219
default_delta_rostockmax = default_deltabot_startcode,
218220
default_deltamaker = default_deltabot_startcode,
219221
default_kossel = default_deltabot_startcode,
222+
default_ultimaker_original_plus = default_ultimaker_original_plus_startcode,
220223
type = 'string',
221224
subSection = 'printer_type',
222225
description = ''

src/util/printer.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ local SUPPORTED_PRINTERS = {
1717
ultimaker = "Ultimaker",
1818
ultimaker2 = "Ultimaker 2",
1919
ultimaker2go = "Ultimaker 2 Go",
20+
ultimaker_original_plus = "Ultimaker Original Plus",
2021
makerbot_replicator2 = "MakerBot Replicator2",
2122
makerbot_replicator2x = "MakerBot Replicator2x",
2223
makerbot_thingomatic = "MakerBot Thing-o-matic",

0 commit comments

Comments
 (0)