This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ## START | |
M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration | |
M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate | |
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration | |
M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk | |
M220 S100 ;Reset Feedrate | |
M221 S100 ;Reset Flowrate | |
G28 ;Home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; START | |
M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration | |
M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate | |
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration | |
M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk | |
M220 S100 ;Reset Feedrate | |
M221 S100 ;Reset Flowrate | |
M117 Bed Probing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: ruby | |
bundler_args: --without kitchen_vagrant | |
cache: true | |
env: | |
- secure: {{ENCRYPTED_ENVIRONMENT_VARS_FROM_UI}} | |
rvm: | |
- 2.0.0 | |
script: | |
- bundle exec rake ci | |
notifications: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
OPTS='' | |
ARGS=`getopt nawhbv $*` | |
set -- $ARGS | |
for i | |
do | |
if [[ $i == \-* ]] | |
then | |
OPTS="$OPTS $i" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node['network']['interfaces'].map { |i,iface| iface['addresses'].select { |j,addr| addr['scope']=='Global' }.keys }.flatten |