实例介绍
基于Arduino的3D打印机,包含芯片资料、固件代码、调试心得等
【实例截图】
【核心代码】
4744300845387660654.zip
├── 3D打印机调试心得.docx
├── Delt的Marlin固件
│ ├── Marlin_delta-makerlab(wonderful_完成)
│ │ ├── ArduinoAddons
│ │ │ ├── Arduino_0.xx
│ │ │ │ ├── Gen6
│ │ │ │ │ ├── boards.txt
│ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ └── atmega644p
│ │ │ │ │ │ ├── ATmegaBOOT_324P.hex
│ │ │ │ │ │ ├── ATmegaBOOT_644.hex
│ │ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ └── cores
│ │ │ │ │ └── arduino
│ │ │ │ │ ├── Arduino.h
│ │ │ │ │ ├── binary.h
│ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ ├── main.cpp
│ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ ├── Print.cpp
│ │ │ │ │ ├── Print.h
│ │ │ │ │ ├── Stream.h
│ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ ├── WConstants.h
│ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ ├── wiring.c
│ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ ├── wiring.h
│ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ ├── WProgram.h
│ │ │ │ │ ├── WString.cpp
│ │ │ │ │ └── WString.h
│ │ │ │ ├── Gen7
│ │ │ │ │ ├── boards.txt
│ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ └── Gen7
│ │ │ │ │ │ ├── bootloader-1284P-16MHz.hex
│ │ │ │ │ │ ├── bootloader-644-16MHz.hex
│ │ │ │ │ │ ├── bootloader-644-20MHz.hex
│ │ │ │ │ │ ├── bootloader-644P-16MHz.hex
│ │ │ │ │ │ └── bootloader-644P-20MHz.hex
│ │ │ │ │ └── cores
│ │ │ │ │ └── arduino
│ │ │ │ │ ├── binary.h
│ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ ├── main.cpp
│ │ │ │ │ ├── main.cxx
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ ├── Print.cpp
│ │ │ │ │ ├── Print.h
│ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ ├── WConstants.h
│ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ ├── wiring.c
│ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ ├── wiring.h
│ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ ├── wiring_serial.c
│ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ ├── WProgram.h
│ │ │ │ │ ├── WString.cpp
│ │ │ │ │ └── WString.h
│ │ │ │ ├── hardware
│ │ │ │ │ └── tools
│ │ │ │ │ └── avr
│ │ │ │ │ └── etc
│ │ │ │ │ └── avrdude.conf
│ │ │ │ ├── libraries
│ │ │ │ │ ├── LiquidCrystal
│ │ │ │ │ │ ├── keywords.txt
│ │ │ │ │ │ ├── LiquidCrystal.cpp
│ │ │ │ │ │ └── LiquidCrystal.h
│ │ │ │ │ ├── SPI
│ │ │ │ │ │ ├── keywords.txt
│ │ │ │ │ │ ├── SPI.cpp
│ │ │ │ │ │ └── SPI.h
│ │ │ │ │ └── U8glib
│ │ │ │ │ ├── ChangeLog
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── Bitmap
│ │ │ │ │ │ │ └── Bitmap.pde
│ │ │ │ │ │ ├── Chess
│ │ │ │ │ │ │ └── Chess.pde
│ │ │ │ │ │ ├── Console
│ │ │ │ │ │ │ └── Console.pde
│ │ │ │ │ │ ├── F
│ │ │ │ │ │ │ └── F.pde
│ │ │ │ │ │ ├── GraphicsTest
│ │ │ │ │ │ │ └── GraphicsTest.pde
│ │ │ │ │ │ ├── HelloWorld
│ │ │ │ │ │ │ └── HelloWorld.pde
│ │ │ │ │ │ ├── Menu
│ │ │ │ │ │ │ └── Menu.pde
│ │ │ │ │ │ ├── PrintTest
│ │ │ │ │ │ │ └── PrintTest.pde
│ │ │ │ │ │ ├── Rotation
│ │ │ │ │ │ │ └── Rotation.pde
│ │ │ │ │ │ ├── Scale
│ │ │ │ │ │ │ └── Scale.pde
│ │ │ │ │ │ ├── TextRotX
│ │ │ │ │ │ │ └── TextRotX.pde
│ │ │ │ │ │ ├── U8gLogo
│ │ │ │ │ │ │ └── U8gLogo.pde
│ │ │ │ │ │ └── XBM
│ │ │ │ │ │ └── XBM.pde
│ │ │ │ │ ├── INSTALL.TXT
│ │ │ │ │ ├── license.txt
│ │ │ │ │ ├── U8glib.cpp
│ │ │ │ │ ├── U8glib.h
│ │ │ │ │ └── utility
│ │ │ │ │ ├── chessengine.c
│ │ │ │ │ ├── u8g_bitmap.c
│ │ │ │ │ ├── u8g_circle.c
│ │ │ │ │ ├── u8g_clip.c
│ │ │ │ │ ├── u8g_com_api_16gr.c
│ │ │ │ │ ├── u8g_com_api.c
│ │ │ │ │ ├── u8g_com_arduino_common.c
│ │ │ │ │ ├── u8g_com_arduino_fast_parallel.c
│ │ │ │ │ ├── u8g_com_arduino_hw_spi.c
│ │ │ │ │ ├── u8g_com_arduino_no_en_parallel.c
│ │ │ │ │ ├── u8g_com_arduino_parallel.c
│ │ │ │ │ ├── u8g_com_arduino_port_d_wr.c
│ │ │ │ │ ├── u8g_com_arduino_ssd_i2c.c
│ │ │ │ │ ├── u8g_com_arduino_st7920_hw_spi.c
│ │ │ │ │ ├── u8g_com_arduino_st7920_spi.c
│ │ │ │ │ ├── u8g_com_arduino_std_sw_spi.c
│ │ │ │ │ ├── u8g_com_arduino_sw_spi.c
│ │ │ │ │ ├── u8g_com_arduino_t6963.c
│ │ │ │ │ ├── u8g_com_atmega_hw_spi.c
│ │ │ │ │ ├── u8g_com_atmega_parallel.c
│ │ │ │ │ ├── u8g_com_atmega_st7920_hw_spi.c
│ │ │ │ │ ├── u8g_com_atmega_st7920_spi.c
│ │ │ │ │ ├── u8g_com_atmega_sw_spi.c
│ │ │ │ │ ├── u8g_com_i2c.c
│ │ │ │ │ ├── u8g_com_io.c
│ │ │ │ │ ├── u8g_com_null.c
│ │ │ │ │ ├── u8g_cursor.c
│ │ │ │ │ ├── u8g_delay.c
│ │ │ │ │ ├── u8g_dev_flipdisc_2x7.c
│ │ │ │ │ ├── u8g_dev_gprof.c
│ │ │ │ │ ├── u8g_dev_ili9325d_320x240.c
│ │ │ │ │ ├── u8g_dev_ks0108_128x64.c
│ │ │ │ │ ├── u8g_dev_lc7981_160x80.c
│ │ │ │ │ ├── u8g_dev_lc7981_240x128.c
│ │ │ │ │ ├── u8g_dev_lc7981_240x64.c
│ │ │ │ │ ├── u8g_dev_lc7981_320x64.c
│ │ │ │ │ ├── u8g_dev_null.c
│ │ │ │ │ ├── u8g_dev_pcd8544_84x48.c
│ │ │ │ │ ├── u8g_dev_pcf8812_96x65.c
│ │ │ │ │ ├── u8g_dev_sbn1661_122x32.c
│ │ │ │ │ ├── u8g_dev_ssd1306_128x32.c
│ │ │ │ │ ├── u8g_dev_ssd1306_128x64.c
│ │ │ │ │ ├── u8g_dev_ssd1309_128x64.c
│ │ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_bw.c
│ │ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_gr.c
│ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw.c
│ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw_new.c
│ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr.c
│ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr_new.c
│ │ │ │ │ ├── u8g_dev_ssd1327_96x96_gr.c
│ │ │ │ │ ├── u8g_dev_st7565_64128n.c
│ │ │ │ │ ├── u8g_dev_st7565_dogm128.c
│ │ │ │ │ ├── u8g_dev_st7565_dogm132.c
│ │ │ │ │ ├── u8g_dev_st7565_lm6059.c
│ │ │ │ │ ├── u8g_dev_st7565_lm6063.c
│ │ │ │ │ ├── u8g_dev_st7565_nhd_c12832.c
│ │ │ │ │ ├── u8g_dev_st7565_nhd_c12864.c
│ │ │ │ │ ├── u8g_dev_st7687_c144mvgd.c
│ │ │ │ │ ├── u8g_dev_st7920_128x64.c
│ │ │ │ │ ├── u8g_dev_st7920_192x32.c
│ │ │ │ │ ├── u8g_dev_st7920_202x32.c
│ │ │ │ │ ├── u8g_dev_t6963_128x64.c
│ │ │ │ │ ├── u8g_dev_t6963_240x128.c
│ │ │ │ │ ├── u8g_dev_t6963_240x64.c
│ │ │ │ │ ├── u8g_dev_tls8204_84x48.c
│ │ │ │ │ ├── u8g_dev_uc1610_dogxl160.c
│ │ │ │ │ ├── u8g_dev_uc1701_dogs102.c
│ │ │ │ │ ├── u8g_dev_uc1701_mini12864.c
│ │ │ │ │ ├── u8g_ellipse.c
│ │ │ │ │ ├── u8g_font.c
│ │ │ │ │ ├── u8g_font_data.c
│ │ │ │ │ ├── u8g.h
│ │ │ │ │ ├── u8g_line.c
│ │ │ │ │ ├── u8g_ll_api.c
│ │ │ │ │ ├── u8g_page.c
│ │ │ │ │ ├── u8g_pb14v1.c
│ │ │ │ │ ├── u8g_pb16h1.c
│ │ │ │ │ ├── u8g_pb16h2.c
│ │ │ │ │ ├── u8g_pb16v1.c
│ │ │ │ │ ├── u8g_pb16v2.c
│ │ │ │ │ ├── u8g_pb32h1.c
│ │ │ │ │ ├── u8g_pb8h1.c
│ │ │ │ │ ├── u8g_pb8h1f.c
│ │ │ │ │ ├── u8g_pb8h2.c
│ │ │ │ │ ├── u8g_pb8h8.c
│ │ │ │ │ ├── u8g_pb8v1.c
│ │ │ │ │ ├── u8g_pb8v2.c
│ │ │ │ │ ├── u8g_pb.c
│ │ │ │ │ ├── u8g_rect.c
│ │ │ │ │ ├── u8g_rot.c
│ │ │ │ │ ├── u8g_scale.c
│ │ │ │ │ ├── u8g_state.c
│ │ │ │ │ ├── u8g_u16toa.c
│ │ │ │ │ ├── u8g_u8toa.c
│ │ │ │ │ └── u8g_virtual_screen.c
│ │ │ │ └── Sanguino
│ │ │ │ ├── boards.txt
│ │ │ │ ├── bootloaders
│ │ │ │ │ ├── atmega1284p
│ │ │ │ │ │ ├── boot.h
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── optiboot_1284P_20MHz_57k6_baud.hex
│ │ │ │ │ │ ├── optiboot.c
│ │ │ │ │ │ ├── pin_defs.h
│ │ │ │ │ │ └── stk500.h
│ │ │ │ │ └── atmega644p
│ │ │ │ │ ├── ATmegaBOOT_324P.hex
│ │ │ │ │ ├── ATmegaBOOT_644.hex
│ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── README.txt
│ │ │ │ ├── cores
│ │ │ │ │ └── arduino
│ │ │ │ │ ├── binary.h
│ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ ├── main.cpp
│ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ ├── Print.cpp
│ │ │ │ │ ├── Print.h
│ │ │ │ │ ├── Stream.h
│ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ ├── WConstants.h
│ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ ├── wiring.c
│ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ ├── wiring.h
│ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ ├── WProgram.h
│ │ │ │ │ ├── WString.cpp
│ │ │ │ │ └── WString.h
│ │ │ │ └── programmers.txt
│ │ │ └── Arduino_1.x.x
│ │ │ ├── hardware
│ │ │ │ ├── rambo
│ │ │ │ │ ├── boards.txt
│ │ │ │ │ ├── cores
│ │ │ │ │ │ └── arduino
│ │ │ │ │ │ ├── Arduino.h
│ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ ├── CDC.cpp
│ │ │ │ │ │ ├── Client.h
│ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ ├── HID.cpp
│ │ │ │ │ │ ├── IPAddress.cpp
│ │ │ │ │ │ ├── IPAddress.h
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── new.cpp
│ │ │ │ │ │ ├── new.h
│ │ │ │ │ │ ├── Platform.h
│ │ │ │ │ │ ├── Printable.h
│ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ ├── Server.h
│ │ │ │ │ │ ├── Stream.cpp
│ │ │ │ │ │ ├── Stream.h
│ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ ├── Udp.h
│ │ │ │ │ │ ├── USBAPI.h
│ │ │ │ │ │ ├── USBCore.cpp
│ │ │ │ │ │ ├── USBCore.h
│ │ │ │ │ │ ├── USBDesc.h
│ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ └── WString.h
│ │ │ │ │ └── variants
│ │ │ │ │ └── standard
│ │ │ │ │ └── pins_arduino.h
│ │ │ │ └── Sanguino
│ │ │ │ ├── boards.txt
│ │ │ │ ├── bootloaders
│ │ │ │ │ ├── atmega
│ │ │ │ │ │ ├── ATmegaBOOT_168_atmega1284p_8m.hex
│ │ │ │ │ │ ├── ATmegaBOOT_168_atmega1284p.hex
│ │ │ │ │ │ ├── ATmegaBOOT_168_atmega644p.hex
│ │ │ │ │ │ ├── ATmegaBOOT_168.c
│ │ │ │ │ │ └── Makefile
│ │ │ │ │ └── atmega644p
│ │ │ │ │ ├── ATmegaBOOT_644P.elf
│ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ ├── ATmegaBOOT.c.tst
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── README.txt
│ │ │ │ ├── cores
│ │ │ │ │ └── arduino
│ │ │ │ │ ├── Arduino.h
│ │ │ │ │ ├── binary.h
│ │ │ │ │ ├── CDC.cpp
│ │ │ │ │ ├── Client.h
│ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ ├── HID.cpp
│ │ │ │ │ ├── IPAddress.cpp
│ │ │ │ │ ├── IPAddress.h
│ │ │ │ │ ├── main.cpp
│ │ │ │ │ ├── new.cpp
│ │ │ │ │ ├── new.h
│ │ │ │ │ ├── Platform.h
│ │ │ │ │ ├── Printable.h
│ │ │ │ │ ├── Print.cpp
│ │ │ │ │ ├── Print.h
│ │ │ │ │ ├── Server.h
│ │ │ │ │ ├── Stream.cpp
│ │ │ │ │ ├── Stream.h
│ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ ├── Udp.h
│ │ │ │ │ ├── USBAPI.h
│ │ │ │ │ ├── USBCore.cpp
│ │ │ │ │ ├── USBCore.h
│ │ │ │ │ ├── USBDesc.h
│ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ ├── wiring.c
│ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ ├── WString.cpp
│ │ │ │ │ └── WString.h
│ │ │ │ └── variants
│ │ │ │ └── standard
│ │ │ │ └── pins_arduino.h
│ │ │ └── libraries
│ │ │ ├── LiquidCrystal
│ │ │ │ ├── keywords.txt
│ │ │ │ ├── LiquidCrystal.cpp
│ │ │ │ └── LiquidCrystal.h
│ │ │ ├── SPI
│ │ │ │ ├── keywords.txt
│ │ │ │ ├── SPI.cpp
│ │ │ │ └── SPI.h
│ │ │ └── U8glib
│ │ │ ├── ChangeLog
│ │ │ ├── examples
│ │ │ │ ├── Bitmap
│ │ │ │ │ └── Bitmap.pde
│ │ │ │ ├── Chess
│ │ │ │ │ └── Chess.pde
│ │ │ │ ├── Console
│ │ │ │ │ └── Console.pde
│ │ │ │ ├── F
│ │ │ │ │ └── F.pde
│ │ │ │ ├── GraphicsTest
│ │ │ │ │ └── GraphicsTest.pde
│ │ │ │ ├── HelloWorld
│ │ │ │ │ └── HelloWorld.pde
│ │ │ │ ├── Menu
│ │ │ │ │ └── Menu.pde
│ │ │ │ ├── PrintTest
│ │ │ │ │ └── PrintTest.pde
│ │ │ │ ├── Rotation
│ │ │ │ │ └── Rotation.pde
│ │ │ │ ├── Scale
│ │ │ │ │ └── Scale.pde
│ │ │ │ ├── TextRotX
│ │ │ │ │ └── TextRotX.pde
│ │ │ │ ├── U8gLogo
│ │ │ │ │ └── U8gLogo.pde
│ │ │ │ └── XBM
│ │ │ │ └── XBM.pde
│ │ │ ├── INSTALL.TXT
│ │ │ ├── license.txt
│ │ │ ├── U8glib.cpp
│ │ │ ├── U8glib.h
│ │ │ └── utility
│ │ │ ├── chessengine.c
│ │ │ ├── u8g_bitmap.c
│ │ │ ├── u8g_circle.c
│ │ │ ├── u8g_clip.c
│ │ │ ├── u8g_com_api_16gr.c
│ │ │ ├── u8g_com_api.c
│ │ │ ├── u8g_com_arduino_common.c
│ │ │ ├── u8g_com_arduino_fast_parallel.c
│ │ │ ├── u8g_com_arduino_hw_spi.c
│ │ │ ├── u8g_com_arduino_no_en_parallel.c
│ │ │ ├── u8g_com_arduino_parallel.c
│ │ │ ├── u8g_com_arduino_port_d_wr.c
│ │ │ ├── u8g_com_arduino_ssd_i2c.c
│ │ │ ├── u8g_com_arduino_st7920_hw_spi.c
│ │ │ ├── u8g_com_arduino_st7920_spi.c
│ │ │ ├── u8g_com_arduino_std_sw_spi.c
│ │ │ ├── u8g_com_arduino_sw_spi.c
│ │ │ ├── u8g_com_arduino_t6963.c
│ │ │ ├── u8g_com_atmega_hw_spi.c
│ │ │ ├── u8g_com_atmega_parallel.c
│ │ │ ├── u8g_com_atmega_st7920_hw_spi.c
│ │ │ ├── u8g_com_atmega_st7920_spi.c
│ │ │ ├── u8g_com_atmega_sw_spi.c
│ │ │ ├── u8g_com_i2c.c
│ │ │ ├── u8g_com_io.c
│ │ │ ├── u8g_com_null.c
│ │ │ ├── u8g_cursor.c
│ │ │ ├── u8g_delay.c
│ │ │ ├── u8g_dev_flipdisc_2x7.c
│ │ │ ├── u8g_dev_gprof.c
│ │ │ ├── u8g_dev_ili9325d_320x240.c
│ │ │ ├── u8g_dev_ks0108_128x64.c
│ │ │ ├── u8g_dev_lc7981_160x80.c
│ │ │ ├── u8g_dev_lc7981_240x128.c
│ │ │ ├── u8g_dev_lc7981_240x64.c
│ │ │ ├── u8g_dev_lc7981_320x64.c
│ │ │ ├── u8g_dev_null.c
│ │ │ ├── u8g_dev_pcd8544_84x48.c
│ │ │ ├── u8g_dev_pcf8812_96x65.c
│ │ │ ├── u8g_dev_sbn1661_122x32.c
│ │ │ ├── u8g_dev_ssd1306_128x32.c
│ │ │ ├── u8g_dev_ssd1306_128x64.c
│ │ │ ├── u8g_dev_ssd1309_128x64.c
│ │ │ ├── u8g_dev_ssd1322_nhd31oled_bw.c
│ │ │ ├── u8g_dev_ssd1322_nhd31oled_gr.c
│ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw.c
│ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw_new.c
│ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr.c
│ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr_new.c
│ │ │ ├── u8g_dev_ssd1327_96x96_gr.c
│ │ │ ├── u8g_dev_st7565_64128n.c
│ │ │ ├── u8g_dev_st7565_dogm128.c
│ │ │ ├── u8g_dev_st7565_dogm132.c
│ │ │ ├── u8g_dev_st7565_lm6059.c
│ │ │ ├── u8g_dev_st7565_lm6063.c
│ │ │ ├── u8g_dev_st7565_nhd_c12832.c
│ │ │ ├── u8g_dev_st7565_nhd_c12864.c
│ │ │ ├── u8g_dev_st7687_c144mvgd.c
│ │ │ ├── u8g_dev_st7920_128x64.c
│ │ │ ├── u8g_dev_st7920_192x32.c
│ │ │ ├── u8g_dev_st7920_202x32.c
│ │ │ ├── u8g_dev_t6963_128x64.c
│ │ │ ├── u8g_dev_t6963_240x128.c
│ │ │ ├── u8g_dev_t6963_240x64.c
│ │ │ ├── u8g_dev_tls8204_84x48.c
│ │ │ ├── u8g_dev_uc1610_dogxl160.c
│ │ │ ├── u8g_dev_uc1701_dogs102.c
│ │ │ ├── u8g_dev_uc1701_mini12864.c
│ │ │ ├── u8g_ellipse.c
│ │ │ ├── u8g_font.c
│ │ │ ├── u8g_font_data.c
│ │ │ ├── u8g.h
│ │ │ ├── u8g_line.c
│ │ │ ├── u8g_ll_api.c
│ │ │ ├── u8g_page.c
│ │ │ ├── u8g_pb14v1.c
│ │ │ ├── u8g_pb16h1.c
│ │ │ ├── u8g_pb16h2.c
│ │ │ ├── u8g_pb16v1.c
│ │ │ ├── u8g_pb16v2.c
│ │ │ ├── u8g_pb32h1.c
│ │ │ ├── u8g_pb8h1.c
│ │ │ ├── u8g_pb8h1f.c
│ │ │ ├── u8g_pb8h2.c
│ │ │ ├── u8g_pb8h8.c
│ │ │ ├── u8g_pb8v1.c
│ │ │ ├── u8g_pb8v2.c
│ │ │ ├── u8g_pb.c
│ │ │ ├── u8g_rect.c
│ │ │ ├── u8g_rot.c
│ │ │ ├── u8g_scale.c
│ │ │ ├── u8g_state.c
│ │ │ ├── u8g_u16toa.c
│ │ │ ├── u8g_u8toa.c
│ │ │ └── u8g_virtual_screen.c
│ │ ├── Marlin_delta-makerlab
│ │ │ ├── ArduinoAddons
│ │ │ │ ├── Arduino_0.xx
│ │ │ │ │ ├── Gen6
│ │ │ │ │ │ ├── boards.txt
│ │ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ │ └── atmega644p
│ │ │ │ │ │ │ ├── ATmegaBOOT_324P.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT_644.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ └── README.txt
│ │ │ │ │ │ └── cores
│ │ │ │ │ │ └── arduino
│ │ │ │ │ │ ├── Arduino.h
│ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ ├── Stream.h
│ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ ├── WConstants.h
│ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ ├── wiring.h
│ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ ├── WProgram.h
│ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ └── WString.h
│ │ │ │ │ ├── Gen7
│ │ │ │ │ │ ├── boards.txt
│ │ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ │ └── Gen7
│ │ │ │ │ │ │ ├── bootloader-1284P-16MHz.hex
│ │ │ │ │ │ │ ├── bootloader-644-16MHz.hex
│ │ │ │ │ │ │ ├── bootloader-644-20MHz.hex
│ │ │ │ │ │ │ ├── bootloader-644P-16MHz.hex
│ │ │ │ │ │ │ └── bootloader-644P-20MHz.hex
│ │ │ │ │ │ └── cores
│ │ │ │ │ │ └── arduino
│ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── main.cxx
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ ├── WConstants.h
│ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ ├── wiring.h
│ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ ├── wiring_serial.c
│ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ ├── WProgram.h
│ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ └── WString.h
│ │ │ │ │ ├── hardware
│ │ │ │ │ │ └── tools
│ │ │ │ │ │ └── avr
│ │ │ │ │ │ └── etc
│ │ │ │ │ │ └── avrdude.conf
│ │ │ │ │ ├── libraries
│ │ │ │ │ │ ├── LiquidCrystal
│ │ │ │ │ │ │ ├── keywords.txt
│ │ │ │ │ │ │ ├── LiquidCrystal.cpp
│ │ │ │ │ │ │ └── LiquidCrystal.h
│ │ │ │ │ │ ├── SPI
│ │ │ │ │ │ │ ├── keywords.txt
│ │ │ │ │ │ │ ├── SPI.cpp
│ │ │ │ │ │ │ └── SPI.h
│ │ │ │ │ │ └── U8glib
│ │ │ │ │ │ ├── ChangeLog
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── Bitmap
│ │ │ │ │ │ │ │ └── Bitmap.pde
│ │ │ │ │ │ │ ├── Chess
│ │ │ │ │ │ │ │ └── Chess.pde
│ │ │ │ │ │ │ ├── Console
│ │ │ │ │ │ │ │ └── Console.pde
│ │ │ │ │ │ │ ├── F
│ │ │ │ │ │ │ │ └── F.pde
│ │ │ │ │ │ │ ├── GraphicsTest
│ │ │ │ │ │ │ │ └── GraphicsTest.pde
│ │ │ │ │ │ │ ├── HelloWorld
│ │ │ │ │ │ │ │ └── HelloWorld.pde
│ │ │ │ │ │ │ ├── Menu
│ │ │ │ │ │ │ │ └── Menu.pde
│ │ │ │ │ │ │ ├── PrintTest
│ │ │ │ │ │ │ │ └── PrintTest.pde
│ │ │ │ │ │ │ ├── Rotation
│ │ │ │ │ │ │ │ └── Rotation.pde
│ │ │ │ │ │ │ ├── Scale
│ │ │ │ │ │ │ │ └── Scale.pde
│ │ │ │ │ │ │ ├── TextRotX
│ │ │ │ │ │ │ │ └── TextRotX.pde
│ │ │ │ │ │ │ ├── U8gLogo
│ │ │ │ │ │ │ │ └── U8gLogo.pde
│ │ │ │ │ │ │ └── XBM
│ │ │ │ │ │ │ └── XBM.pde
│ │ │ │ │ │ ├── INSTALL.TXT
│ │ │ │ │ │ ├── license.txt
│ │ │ │ │ │ ├── U8glib.cpp
│ │ │ │ │ │ ├── U8glib.h
│ │ │ │ │ │ └── utility
│ │ │ │ │ │ ├── chessengine.c
│ │ │ │ │ │ ├── u8g_bitmap.c
│ │ │ │ │ │ ├── u8g_circle.c
│ │ │ │ │ │ ├── u8g_clip.c
│ │ │ │ │ │ ├── u8g_com_api_16gr.c
│ │ │ │ │ │ ├── u8g_com_api.c
│ │ │ │ │ │ ├── u8g_com_arduino_common.c
│ │ │ │ │ │ ├── u8g_com_arduino_fast_parallel.c
│ │ │ │ │ │ ├── u8g_com_arduino_hw_spi.c
│ │ │ │ │ │ ├── u8g_com_arduino_no_en_parallel.c
│ │ │ │ │ │ ├── u8g_com_arduino_parallel.c
│ │ │ │ │ │ ├── u8g_com_arduino_port_d_wr.c
│ │ │ │ │ │ ├── u8g_com_arduino_ssd_i2c.c
│ │ │ │ │ │ ├── u8g_com_arduino_st7920_hw_spi.c
│ │ │ │ │ │ ├── u8g_com_arduino_st7920_spi.c
│ │ │ │ │ │ ├── u8g_com_arduino_std_sw_spi.c
│ │ │ │ │ │ ├── u8g_com_arduino_sw_spi.c
│ │ │ │ │ │ ├── u8g_com_arduino_t6963.c
│ │ │ │ │ │ ├── u8g_com_atmega_hw_spi.c
│ │ │ │ │ │ ├── u8g_com_atmega_parallel.c
│ │ │ │ │ │ ├── u8g_com_atmega_st7920_hw_spi.c
│ │ │ │ │ │ ├── u8g_com_atmega_st7920_spi.c
│ │ │ │ │ │ ├── u8g_com_atmega_sw_spi.c
│ │ │ │ │ │ ├── u8g_com_i2c.c
│ │ │ │ │ │ ├── u8g_com_io.c
│ │ │ │ │ │ ├── u8g_com_null.c
│ │ │ │ │ │ ├── u8g_cursor.c
│ │ │ │ │ │ ├── u8g_delay.c
│ │ │ │ │ │ ├── u8g_dev_flipdisc_2x7.c
│ │ │ │ │ │ ├── u8g_dev_gprof.c
│ │ │ │ │ │ ├── u8g_dev_ili9325d_320x240.c
│ │ │ │ │ │ ├── u8g_dev_ks0108_128x64.c
│ │ │ │ │ │ ├── u8g_dev_lc7981_160x80.c
│ │ │ │ │ │ ├── u8g_dev_lc7981_240x128.c
│ │ │ │ │ │ ├── u8g_dev_lc7981_240x64.c
│ │ │ │ │ │ ├── u8g_dev_lc7981_320x64.c
│ │ │ │ │ │ ├── u8g_dev_null.c
│ │ │ │ │ │ ├── u8g_dev_pcd8544_84x48.c
│ │ │ │ │ │ ├── u8g_dev_pcf8812_96x65.c
│ │ │ │ │ │ ├── u8g_dev_sbn1661_122x32.c
│ │ │ │ │ │ ├── u8g_dev_ssd1306_128x32.c
│ │ │ │ │ │ ├── u8g_dev_ssd1306_128x64.c
│ │ │ │ │ │ ├── u8g_dev_ssd1309_128x64.c
│ │ │ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_bw.c
│ │ │ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_gr.c
│ │ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw.c
│ │ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw_new.c
│ │ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr.c
│ │ │ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr_new.c
│ │ │ │ │ │ ├── u8g_dev_ssd1327_96x96_gr.c
│ │ │ │ │ │ ├── u8g_dev_st7565_64128n.c
│ │ │ │ │ │ ├── u8g_dev_st7565_dogm128.c
│ │ │ │ │ │ ├── u8g_dev_st7565_dogm132.c
│ │ │ │ │ │ ├── u8g_dev_st7565_lm6059.c
│ │ │ │ │ │ ├── u8g_dev_st7565_lm6063.c
│ │ │ │ │ │ ├── u8g_dev_st7565_nhd_c12832.c
│ │ │ │ │ │ ├── u8g_dev_st7565_nhd_c12864.c
│ │ │ │ │ │ ├── u8g_dev_st7687_c144mvgd.c
│ │ │ │ │ │ ├── u8g_dev_st7920_128x64.c
│ │ │ │ │ │ ├── u8g_dev_st7920_192x32.c
│ │ │ │ │ │ ├── u8g_dev_st7920_202x32.c
│ │ │ │ │ │ ├── u8g_dev_t6963_128x64.c
│ │ │ │ │ │ ├── u8g_dev_t6963_240x128.c
│ │ │ │ │ │ ├── u8g_dev_t6963_240x64.c
│ │ │ │ │ │ ├── u8g_dev_tls8204_84x48.c
│ │ │ │ │ │ ├── u8g_dev_uc1610_dogxl160.c
│ │ │ │ │ │ ├── u8g_dev_uc1701_dogs102.c
│ │ │ │ │ │ ├── u8g_dev_uc1701_mini12864.c
│ │ │ │ │ │ ├── u8g_ellipse.c
│ │ │ │ │ │ ├── u8g_font.c
│ │ │ │ │ │ ├── u8g_font_data.c
│ │ │ │ │ │ ├── u8g.h
│ │ │ │ │ │ ├── u8g_line.c
│ │ │ │ │ │ ├── u8g_ll_api.c
│ │ │ │ │ │ ├── u8g_page.c
│ │ │ │ │ │ ├── u8g_pb14v1.c
│ │ │ │ │ │ ├── u8g_pb16h1.c
│ │ │ │ │ │ ├── u8g_pb16h2.c
│ │ │ │ │ │ ├── u8g_pb16v1.c
│ │ │ │ │ │ ├── u8g_pb16v2.c
│ │ │ │ │ │ ├── u8g_pb32h1.c
│ │ │ │ │ │ ├── u8g_pb8h1.c
│ │ │ │ │ │ ├── u8g_pb8h1f.c
│ │ │ │ │ │ ├── u8g_pb8h2.c
│ │ │ │ │ │ ├── u8g_pb8h8.c
│ │ │ │ │ │ ├── u8g_pb8v1.c
│ │ │ │ │ │ ├── u8g_pb8v2.c
│ │ │ │ │ │ ├── u8g_pb.c
│ │ │ │ │ │ ├── u8g_rect.c
│ │ │ │ │ │ ├── u8g_rot.c
│ │ │ │ │ │ ├── u8g_scale.c
│ │ │ │ │ │ ├── u8g_state.c
│ │ │ │ │ │ ├── u8g_u16toa.c
│ │ │ │ │ │ ├── u8g_u8toa.c
│ │ │ │ │ │ └── u8g_virtual_screen.c
│ │ │ │ │ └── Sanguino
│ │ │ │ │ ├── boards.txt
│ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ ├── atmega1284p
│ │ │ │ │ │ │ ├── boot.h
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── optiboot_1284P_20MHz_57k6_baud.hex
│ │ │ │ │ │ │ ├── optiboot.c
│ │ │ │ │ │ │ ├── pin_defs.h
│ │ │ │ │ │ │ └── stk500.h
│ │ │ │ │ │ └── atmega644p
│ │ │ │ │ │ ├── ATmegaBOOT_324P.hex
│ │ │ │ │ │ ├── ATmegaBOOT_644.hex
│ │ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ ├── cores
│ │ │ │ │ │ └── arduino
│ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── pins_arduino.c
│ │ │ │ │ │ ├── pins_arduino.h
│ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ ├── Stream.h
│ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ ├── WConstants.h
│ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ ├── wiring.h
│ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ ├── WProgram.h
│ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ └── WString.h
│ │ │ │ │ └── programmers.txt
│ │ │ │ └── Arduino_1.x.x
│ │ │ │ ├── hardware
│ │ │ │ │ ├── rambo
│ │ │ │ │ │ ├── boards.txt
│ │ │ │ │ │ ├── cores
│ │ │ │ │ │ │ └── arduino
│ │ │ │ │ │ │ ├── Arduino.h
│ │ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ │ ├── CDC.cpp
│ │ │ │ │ │ │ ├── Client.h
│ │ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ │ ├── HID.cpp
│ │ │ │ │ │ │ ├── IPAddress.cpp
│ │ │ │ │ │ │ ├── IPAddress.h
│ │ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ │ ├── new.cpp
│ │ │ │ │ │ │ ├── new.h
│ │ │ │ │ │ │ ├── Platform.h
│ │ │ │ │ │ │ ├── Printable.h
│ │ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ │ ├── Server.h
│ │ │ │ │ │ │ ├── Stream.cpp
│ │ │ │ │ │ │ ├── Stream.h
│ │ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ │ ├── Udp.h
│ │ │ │ │ │ │ ├── USBAPI.h
│ │ │ │ │ │ │ ├── USBCore.cpp
│ │ │ │ │ │ │ ├── USBCore.h
│ │ │ │ │ │ │ ├── USBDesc.h
│ │ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ │ └── WString.h
│ │ │ │ │ │ └── variants
│ │ │ │ │ │ └── standard
│ │ │ │ │ │ └── pins_arduino.h
│ │ │ │ │ └── Sanguino
│ │ │ │ │ ├── boards.txt
│ │ │ │ │ ├── bootloaders
│ │ │ │ │ │ ├── atmega
│ │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega1284p_8m.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega1284p.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega644p.hex
│ │ │ │ │ │ │ ├── ATmegaBOOT_168.c
│ │ │ │ │ │ │ └── Makefile
│ │ │ │ │ │ └── atmega644p
│ │ │ │ │ │ ├── ATmegaBOOT_644P.elf
│ │ │ │ │ │ ├── ATmegaBOOT_644P.hex
│ │ │ │ │ │ ├── ATmegaBOOT.c
│ │ │ │ │ │ ├── ATmegaBOOT.c.tst
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ ├── cores
│ │ │ │ │ │ └── arduino
│ │ │ │ │ │ ├── Arduino.h
│ │ │ │ │ │ ├── binary.h
│ │ │ │ │ │ ├── CDC.cpp
│ │ │ │ │ │ ├── Client.h
│ │ │ │ │ │ ├── HardwareSerial.cpp
│ │ │ │ │ │ ├── HardwareSerial.h
│ │ │ │ │ │ ├── HID.cpp
│ │ │ │ │ │ ├── IPAddress.cpp
│ │ │ │ │ │ ├── IPAddress.h
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── new.cpp
│ │ │ │ │ │ ├── new.h
│ │ │ │ │ │ ├── Platform.h
│ │ │ │ │ │ ├── Printable.h
│ │ │ │ │ │ ├── Print.cpp
│ │ │ │ │ │ ├── Print.h
│ │ │ │ │ │ ├── Server.h
│ │ │ │ │ │ ├── Stream.cpp
│ │ │ │ │ │ ├── Stream.h
│ │ │ │ │ │ ├── Tone.cpp
│ │ │ │ │ │ ├── Udp.h
│ │ │ │ │ │ ├── USBAPI.h
│ │ │ │ │ │ ├── USBCore.cpp
│ │ │ │ │ │ ├── USBCore.h
│ │ │ │ │ │ ├── USBDesc.h
│ │ │ │ │ │ ├── WCharacter.h
│ │ │ │ │ │ ├── WInterrupts.c
│ │ │ │ │ │ ├── wiring_analog.c
│ │ │ │ │ │ ├── wiring.c
│ │ │ │ │ │ ├── wiring_digital.c
│ │ │ │ │ │ ├── wiring_private.h
│ │ │ │ │ │ ├── wiring_pulse.c
│ │ │ │ │ │ ├── wiring_shift.c
│ │ │ │ │ │ ├── WMath.cpp
│ │ │ │ │ │ ├── WString.cpp
│ │ │ │ │ │ └── WString.h
│ │ │ │ │ └── variants
│ │ │ │ │ └── standard
│ │ │ │ │ └── pins_arduino.h
│ │ │ │ └── libraries
│ │ │ │ ├── LiquidCrystal
│ │ │ │ │ ├── keywords.txt
│ │ │ │ │ ├── LiquidCrystal.cpp
│ │ │ │ │ └── LiquidCrystal.h
│ │ │ │ ├── SPI
│ │ │ │ │ ├── keywords.txt
│ │ │ │ │ ├── SPI.cpp
│ │ │ │ │ └── SPI.h
│ │ │ │ └── U8glib
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── examples
│ │ │ │ │ ├── Bitmap
│ │ │ │ │ │ └── Bitmap.pde
│ │ │ │ │ ├── Chess
│ │ │ │ │ │ └── Chess.pde
│ │ │ │ │ ├── Console
│ │ │ │ │ │ └── Console.pde
│ │ │ │ │ ├── F
│ │ │ │ │ │ └── F.pde
│ │ │ │ │ ├── GraphicsTest
│ │ │ │ │ │ └── GraphicsTest.pde
│ │ │ │ │ ├── HelloWorld
│ │ │ │ │ │ └── HelloWorld.pde
│ │ │ │ │ ├── Menu
│ │ │ │ │ │ └── Menu.pde
│ │ │ │ │ ├── PrintTest
│ │ │ │ │ │ └── PrintTest.pde
│ │ │ │ │ ├── Rotation
│ │ │ │ │ │ └── Rotation.pde
│ │ │ │ │ ├── Scale
│ │ │ │ │ │ └── Scale.pde
│ │ │ │ │ ├── TextRotX
│ │ │ │ │ │ └── TextRotX.pde
│ │ │ │ │ ├── U8gLogo
│ │ │ │ │ │ └── U8gLogo.pde
│ │ │ │ │ └── XBM
│ │ │ │ │ └── XBM.pde
│ │ │ │ ├── INSTALL.TXT
│ │ │ │ ├── license.txt
│ │ │ │ ├── U8glib.cpp
│ │ │ │ ├── U8glib.h
│ │ │ │ └── utility
│ │ │ │ ├── chessengine.c
│ │ │ │ ├── u8g_bitmap.c
│ │ │ │ ├── u8g_circle.c
│ │ │ │ ├── u8g_clip.c
│ │ │ │ ├── u8g_com_api_16gr.c
│ │ │ │ ├── u8g_com_api.c
│ │ │ │ ├── u8g_com_arduino_common.c
│ │ │ │ ├── u8g_com_arduino_fast_parallel.c
│ │ │ │ ├── u8g_com_arduino_hw_spi.c
│ │ │ │ ├── u8g_com_arduino_no_en_parallel.c
│ │ │ │ ├── u8g_com_arduino_parallel.c
│ │ │ │ ├── u8g_com_arduino_port_d_wr.c
│ │ │ │ ├── u8g_com_arduino_ssd_i2c.c
│ │ │ │ ├── u8g_com_arduino_st7920_hw_spi.c
│ │ │ │ ├── u8g_com_arduino_st7920_spi.c
│ │ │ │ ├── u8g_com_arduino_std_sw_spi.c
│ │ │ │ ├── u8g_com_arduino_sw_spi.c
│ │ │ │ ├── u8g_com_arduino_t6963.c
│ │ │ │ ├── u8g_com_atmega_hw_spi.c
│ │ │ │ ├── u8g_com_atmega_parallel.c
│ │ │ │ ├── u8g_com_atmega_st7920_hw_spi.c
│ │ │ │ ├── u8g_com_atmega_st7920_spi.c
│ │ │ │ ├── u8g_com_atmega_sw_spi.c
│ │ │ │ ├── u8g_com_i2c.c
│ │ │ │ ├── u8g_com_io.c
│ │ │ │ ├── u8g_com_null.c
│ │ │ │ ├── u8g_cursor.c
│ │ │ │ ├── u8g_delay.c
│ │ │ │ ├── u8g_dev_flipdisc_2x7.c
│ │ │ │ ├── u8g_dev_gprof.c
│ │ │ │ ├── u8g_dev_ili9325d_320x240.c
│ │ │ │ ├── u8g_dev_ks0108_128x64.c
│ │ │ │ ├── u8g_dev_lc7981_160x80.c
│ │ │ │ ├── u8g_dev_lc7981_240x128.c
│ │ │ │ ├── u8g_dev_lc7981_240x64.c
│ │ │ │ ├── u8g_dev_lc7981_320x64.c
│ │ │ │ ├── u8g_dev_null.c
│ │ │ │ ├── u8g_dev_pcd8544_84x48.c
│ │ │ │ ├── u8g_dev_pcf8812_96x65.c
│ │ │ │ ├── u8g_dev_sbn1661_122x32.c
│ │ │ │ ├── u8g_dev_ssd1306_128x32.c
│ │ │ │ ├── u8g_dev_ssd1306_128x64.c
│ │ │ │ ├── u8g_dev_ssd1309_128x64.c
│ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_bw.c
│ │ │ │ ├── u8g_dev_ssd1322_nhd31oled_gr.c
│ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw.c
│ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw_new.c
│ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr.c
│ │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr_new.c
│ │ │ │ ├── u8g_dev_ssd1327_96x96_gr.c
│ │ │ │ ├── u8g_dev_st7565_64128n.c
│ │ │ │ ├── u8g_dev_st7565_dogm128.c
│ │ │ │ ├── u8g_dev_st7565_dogm132.c
│ │ │ │ ├── u8g_dev_st7565_lm6059.c
│ │ │ │ ├── u8g_dev_st7565_lm6063.c
│ │ │ │ ├── u8g_dev_st7565_nhd_c12832.c
│ │ │ │ ├── u8g_dev_st7565_nhd_c12864.c
│ │ │ │ ├── u8g_dev_st7687_c144mvgd.c
│ │ │ │ ├── u8g_dev_st7920_128x64.c
│ │ │ │ ├── u8g_dev_st7920_192x32.c
│ │ │ │ ├── u8g_dev_st7920_202x32.c
│ │ │ │ ├── u8g_dev_t6963_128x64.c
│ │ │ │ ├── u8g_dev_t6963_240x128.c
│ │ │ │ ├── u8g_dev_t6963_240x64.c
│ │ │ │ ├── u8g_dev_tls8204_84x48.c
│ │ │ │ ├── u8g_dev_uc1610_dogxl160.c
│ │ │ │ ├── u8g_dev_uc1701_dogs102.c
│ │ │ │ ├── u8g_dev_uc1701_mini12864.c
│ │ │ │ ├── u8g_ellipse.c
│ │ │ │ ├── u8g_font.c
│ │ │ │ ├── u8g_font_data.c
│ │ │ │ ├── u8g.h
│ │ │ │ ├── u8g_line.c
│ │ │ │ ├── u8g_ll_api.c
│ │ │ │ ├── u8g_page.c
│ │ │ │ ├── u8g_pb14v1.c
│ │ │ │ ├── u8g_pb16h1.c
│ │ │ │ ├── u8g_pb16h2.c
│ │ │ │ ├── u8g_pb16v1.c
│ │ │ │ ├── u8g_pb16v2.c
│ │ │ │ ├── u8g_pb32h1.c
│ │ │ │ ├── u8g_pb8h1.c
│ │ │ │ ├── u8g_pb8h1f.c
│ │ │ │ ├── u8g_pb8h2.c
│ │ │ │ ├── u8g_pb8h8.c
│ │ │ │ ├── u8g_pb8v1.c
│ │ │ │ ├── u8g_pb8v2.c
│ │ │ │ ├── u8g_pb.c
│ │ │ │ ├── u8g_rect.c
│ │ │ │ ├── u8g_rot.c
│ │ │ │ ├── u8g_scale.c
│ │ │ │ ├── u8g_state.c
│ │ │ │ ├── u8g_u16toa.c
│ │ │ │ ├── u8g_u8toa.c
│ │ │ │ └── u8g_virtual_screen.c
│ │ │ ├── Delta特有参数.docx
│ │ │ ├── Marlin
│ │ │ │ ├── BlinkM.cpp
│ │ │ │ ├── BlinkM.h
│ │ │ │ ├── cardreader.cpp
│ │ │ │ ├── cardreader.h
│ │ │ │ ├── Configuration_adv.h
│ │ │ │ ├── Configuration.h
│ │ │ │ ├── ConfigurationStore.cpp
│ │ │ │ ├── ConfigurationStore.h
│ │ │ │ ├── COPYING
│ │ │ │ ├── create_speed_lookuptable.py
│ │ │ │ ├── createTemperatureLookupMarlin.py
│ │ │ │ ├── digipot_mcp4451.cpp
│ │ │ │ ├── DOGMbitmaps.h
│ │ │ │ ├── dogm_font_data_marlin.h
│ │ │ │ ├── dogm_lcd_implementation.h
│ │ │ │ ├── example_configurations
│ │ │ │ │ └── delta
│ │ │ │ │ ├── Configuration_adv.h
│ │ │ │ │ └── Configuration.h
│ │ │ │ ├── fastio.h
│ │ │ │ ├── language.h
│ │ │ │ ├── LCD Menu Tree.pdf
│ │ │ │ ├── LiquidCrystalRus.cpp
│ │ │ │ ├── LiquidCrystalRus.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── Marlin.h
│ │ │ │ ├── Marlin.ino
│ │ │ │ ├── Marlin_main.cpp
│ │ │ │ ├── MarlinSerial.cpp
│ │ │ │ ├── MarlinSerial.h
│ │ │ │ ├── Menu Plans.xlsx
│ │ │ │ ├── motion_control.cpp
│ │ │ │ ├── motion_control.h
│ │ │ │ ├── pins.h
│ │ │ │ ├── planner.cpp
│ │ │ │ ├── planner.h
│ │ │ │ ├── qr_solve.cpp
│ │ │ │ ├── qr_solve.h
│ │ │ │ ├── Sd2Card.cpp
│ │ │ │ ├── Sd2Card.h
│ │ │ │ ├── Sd2PinMap.h
│ │ │ │ ├── SdBaseFile.cpp
│ │ │ │ ├── SdBaseFile.h
│ │ │ │ ├── SdFatConfig.h
│ │ │ │ ├── SdFatStructs.h
│ │ │ │ ├── SdFatUtil.cpp
│ │ │ │ ├── SdFatUtil.h
│ │ │ │ ├── SdFile.cpp
│ │ │ │ ├── SdFile.h
│ │ │ │ ├── SdInfo.h
│ │ │ │ ├── SdVolume.cpp
│ │ │ │ ├── SdVolume.h
│ │ │ │ ├── Servo.cpp
│ │ │ │ ├── Servo.h
│ │ │ │ ├── speed_lookuptable.h
│ │ │ │ ├── stepper.cpp
│ │ │ │ ├── stepper.h
│ │ │ │ ├── temperature.cpp
│ │ │ │ ├── temperature.h
│ │ │ │ ├── thermistortables.h
│ │ │ │ ├── ultralcd.cpp
│ │ │ │ ├── ultralcd.h
│ │ │ │ ├── ultralcd_implementation_hitachi_HD44780.h
│ │ │ │ ├── ultralcd_st7920_u8glib_rrd.h
│ │ │ │ ├── vector_3.cpp
│ │ │ │ ├── vector_3.h
│ │ │ │ ├── watchdog.cpp
│ │ │ │ └── watchdog.h
│ │ │ ├── README.md
│ │ │ └── 修改进度.txt
│ │ └── README.md
│ └── 修改笔记——心得 .txt
├── ramp1.4定义.jpg
├── 切片软件、上位机
│ ├── Printrun-Win-Slic3r
│ │ ├── images
│ │ │ ├── arrow_down.png
│ │ │ ├── arrow_keys.png
│ │ │ ├── arrow_up.png
│ │ │ ├── control_xy.png
│ │ │ ├── control_z.png
│ │ │ ├── fit.png
│ │ │ ├── inject.png
│ │ │ ├── reset.png
│ │ │ ├── zoom_in.png
│ │ │ └── zoom_out.png
│ │ ├── library
│ │ │ ├── _abcoll.pyc
│ │ │ ├── abc.pyc
│ │ │ ├── argparse.pyc
│ │ │ ├── ast.pyc
│ │ │ ├── atexit.pyc
│ │ │ ├── base64.pyc
│ │ │ ├── BaseHTTPServer.pyc
│ │ │ ├── bdb.pyc
│ │ │ ├── bisect.pyc
│ │ │ ├── bz2.pyd
│ │ │ ├── cmd.pyc
│ │ │ ├── codecs.pyc
│ │ │ ├── collections.pyc
│ │ │ ├── commands.pyc
│ │ │ ├── compiler
│ │ │ │ ├── ast.pyc
│ │ │ │ ├── consts.pyc
│ │ │ │ ├── future.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── misc.pyc
│ │ │ │ ├── pyassem.pyc
│ │ │ │ ├── pycodegen.pyc
│ │ │ │ ├── symbols.pyc
│ │ │ │ ├── syntax.pyc
│ │ │ │ ├── transformer.pyc
│ │ │ │ └── visitor.pyc
│ │ │ ├── ConfigParser.pyc
│ │ │ ├── contextlib.pyc
│ │ │ ├── cookielib.pyc
│ │ │ ├── copy.pyc
│ │ │ ├── copy_reg.pyc
│ │ │ ├── ctypes
│ │ │ │ ├── _endian.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── macholib
│ │ │ │ │ ├── dyld.pyc
│ │ │ │ │ ├── dylib.pyc
│ │ │ │ │ ├── framework.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── util.pyc
│ │ │ │ └── wintypes.pyc
│ │ │ ├── _ctypes.pyd
│ │ │ ├── curses
│ │ │ │ ├── has_key.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── wrapper.pyc
│ │ │ ├── difflib.pyc
│ │ │ ├── dis.pyc
│ │ │ ├── distutils
│ │ │ │ ├── archive_util.pyc
│ │ │ │ ├── ccompiler.pyc
│ │ │ │ ├── cmd.pyc
│ │ │ │ ├── command
│ │ │ │ │ ├── bdist.pyc
│ │ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ │ ├── build_clib.pyc
│ │ │ │ │ ├── build_ext.pyc
│ │ │ │ │ ├── build.pyc
│ │ │ │ │ ├── build_py.pyc
│ │ │ │ │ ├── build_scripts.pyc
│ │ │ │ │ ├── config.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── install_data.pyc
│ │ │ │ │ ├── install_headers.pyc
│ │ │ │ │ ├── install_lib.pyc
│ │ │ │ │ ├── install.pyc
│ │ │ │ │ └── sdist.pyc
│ │ │ │ ├── config.pyc
│ │ │ │ ├── core.pyc
│ │ │ │ ├── cygwinccompiler.pyc
│ │ │ │ ├── debug.pyc
│ │ │ │ ├── dep_util.pyc
│ │ │ │ ├── dir_util.pyc
│ │ │ │ ├── dist.pyc
│ │ │ │ ├── errors.pyc
│ │ │ │ ├── extension.pyc
│ │ │ │ ├── fancy_getopt.pyc
│ │ │ │ ├── filelist.pyc
│ │ │ │ ├── file_util.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── log.pyc
│ │ │ │ ├── msvc9compiler.pyc
│ │ │ │ ├── msvccompiler.pyc
│ │ │ │ ├── spawn.pyc
│ │ │ │ ├── sysconfig.pyc
│ │ │ │ ├── text_file.pyc
│ │ │ │ ├── unixccompiler.pyc
│ │ │ │ ├── util.pyc
│ │ │ │ ├── versionpredicate.pyc
│ │ │ │ └── version.pyc
│ │ │ ├── doctest.pyc
│ │ │ ├── dummy_threading.pyc
│ │ │ ├── dummy_thread.pyc
│ │ │ ├── encodings
│ │ │ │ ├── aliases.pyc
│ │ │ │ ├── ascii.pyc
│ │ │ │ ├── base64_codec.pyc
│ │ │ │ ├── big5hkscs.pyc
│ │ │ │ ├── big5.pyc
│ │ │ │ ├── bz2_codec.pyc
│ │ │ │ ├── charmap.pyc
│ │ │ │ ├── cp037.pyc
│ │ │ │ ├── cp1006.pyc
│ │ │ │ ├── cp1026.pyc
│ │ │ │ ├── cp1140.pyc
│ │ │ │ ├── cp1250.pyc
│ │ │ │ ├── cp1251.pyc
│ │ │ │ ├── cp1252.pyc
│ │ │ │ ├── cp1253.pyc
│ │ │ │ ├── cp1254.pyc
│ │ │ │ ├── cp1255.pyc
│ │ │ │ ├── cp1256.pyc
│ │ │ │ ├── cp1257.pyc
│ │ │ │ ├── cp1258.pyc
│ │ │ │ ├── cp424.pyc
│ │ │ │ ├── cp437.pyc
│ │ │ │ ├── cp500.pyc
│ │ │ │ ├── cp720.pyc
│ │ │ │ ├── cp737.pyc
│ │ │ │ ├── cp775.pyc
│ │ │ │ ├── cp850.pyc
│ │ │ │ ├── cp852.pyc
│ │ │ │ ├── cp855.pyc
│ │ │ │ ├── cp856.pyc
│ │ │ │ ├── cp857.pyc
│ │ │ │ ├── cp858.pyc
│ │ │ │ ├── cp860.pyc
│ │ │ │ ├── cp861.pyc
│ │ │ │ ├── cp862.pyc
│ │ │ │ ├── cp863.pyc
│ │ │ │ ├── cp864.pyc
│ │ │ │ ├── cp865.pyc
│ │ │ │ ├── cp866.pyc
│ │ │ │ ├── cp869.pyc
│ │ │ │ ├── cp874.pyc
│ │ │ │ ├── cp875.pyc
│ │ │ │ ├── cp932.pyc
│ │ │ │ ├── cp949.pyc
│ │ │ │ ├── cp950.pyc
│ │ │ │ ├── euc_jis_2004.pyc
│ │ │ │ ├── euc_jisx0213.pyc
│ │ │ │ ├── euc_jp.pyc
│ │ │ │ ├── euc_kr.pyc
│ │ │ │ ├── gb18030.pyc
│ │ │ │ ├── gb2312.pyc
│ │ │ │ ├── gbk.pyc
│ │ │ │ ├── hex_codec.pyc
│ │ │ │ ├── hp_roman8.pyc
│ │ │ │ ├── hz.pyc
│ │ │ │ ├── idna.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── iso2022_jp_1.pyc
│ │ │ │ ├── iso2022_jp_2004.pyc
│ │ │ │ ├── iso2022_jp_2.pyc
│ │ │ │ ├── iso2022_jp_3.pyc
│ │ │ │ ├── iso2022_jp_ext.pyc
│ │ │ │ ├── iso2022_jp.pyc
│ │ │ │ ├── iso2022_kr.pyc
│ │ │ │ ├── iso8859_10.pyc
│ │ │ │ ├── iso8859_11.pyc
│ │ │ │ ├── iso8859_13.pyc
│ │ │ │ ├── iso8859_14.pyc
│ │ │ │ ├── iso8859_15.pyc
│ │ │ │ ├── iso8859_16.pyc
│ │ │ │ ├── iso8859_1.pyc
│ │ │ │ ├── iso8859_2.pyc
│ │ │ │ ├── iso8859_3.pyc
│ │ │ │ ├── iso8859_4.pyc
│ │ │ │ ├── iso8859_5.pyc
│ │ │ │ ├── iso8859_6.pyc
│ │ │ │ ├── iso8859_7.pyc
│ │ │ │ ├── iso8859_8.pyc
│ │ │ │ ├── iso8859_9.pyc
│ │ │ │ ├── johab.pyc
│ │ │ │ ├── koi8_r.pyc
│ │ │ │ ├── koi8_u.pyc
│ │ │ │ ├── latin_1.pyc
│ │ │ │ ├── mac_arabic.pyc
│ │ │ │ ├── mac_centeuro.pyc
│ │ │ │ ├── mac_croatian.pyc
│ │ │ │ ├── mac_cyrillic.pyc
│ │ │ │ ├── mac_farsi.pyc
│ │ │ │ ├── mac_greek.pyc
│ │ │ │ ├── mac_iceland.pyc
│ │ │ │ ├── mac_latin2.pyc
│ │ │ │ ├── mac_romanian.pyc
│ │ │ │ ├── mac_roman.pyc
│ │ │ │ ├── mac_turkish.pyc
│ │ │ │ ├── mbcs.pyc
│ │ │ │ ├── palmos.pyc
│ │ │ │ ├── ptcp154.pyc
│ │ │ │ ├── punycode.pyc
│ │ │ │ ├── quopri_codec.pyc
│ │ │ │ ├── raw_unicode_escape.pyc
│ │ │ │ ├── rot_13.pyc
│ │ │ │ ├── shift_jis_2004.pyc
│ │ │ │ ├── shift_jis.pyc
│ │ │ │ ├── shift_jisx0213.pyc
│ │ │ │ ├── string_escape.pyc
│ │ │ │ ├── tis_620.pyc
│ │ │ │ ├── undefined.pyc
│ │ │ │ ├── unicode_escape.pyc
│ │ │ │ ├── unicode_internal.pyc
│ │ │ │ ├── utf_16_be.pyc
│ │ │ │ ├── utf_16_le.pyc
│ │ │ │ ├── utf_16.pyc
│ │ │ │ ├── utf_32_be.pyc
│ │ │ │ ├── utf_32_le.pyc
│ │ │ │ ├── utf_32.pyc
│ │ │ │ ├── utf_7.pyc
│ │ │ │ ├── utf_8.pyc
│ │ │ │ ├── utf_8_sig.pyc
│ │ │ │ ├── uu_codec.pyc
│ │ │ │ └── zlib_codec.pyc
│ │ │ ├── fileinput.pyc
│ │ │ ├── fnmatch.pyc
│ │ │ ├── formatter.pyc
│ │ │ ├── ftplib.pyc
│ │ │ ├── functools.pyc
│ │ │ ├── __future__.pyc
│ │ │ ├── genericpath.pyc
│ │ │ ├── getopt.pyc
│ │ │ ├── getpass.pyc
│ │ │ ├── gettext.pyc
│ │ │ ├── glob.pyc
│ │ │ ├── gzip.pyc
│ │ │ ├── hashlib.pyc
│ │ │ ├── _hashlib.pyd
│ │ │ ├── heapq.pyc
│ │ │ ├── htmlentitydefs.pyc
│ │ │ ├── HTMLParser.pyc
│ │ │ ├── httplib.pyc
│ │ │ ├── imghdr.pyc
│ │ │ ├── inspect.pyc
│ │ │ ├── io.pyc
│ │ │ ├── json
│ │ │ │ ├── decoder.pyc
│ │ │ │ ├── encoder.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── scanner.pyc
│ │ │ ├── keyword.pyc
│ │ │ ├── linecache.pyc
│ │ │ ├── locale.pyc
│ │ │ ├── logging
│ │ │ │ └── __init__.pyc
│ │ │ ├── _LWPCookieJar.pyc
│ │ │ ├── markupbase.pyc
│ │ │ ├── md5.pyc
│ │ │ ├── mimetools.pyc
│ │ │ ├── mimetypes.pyc
│ │ │ ├── _MozillaCookieJar.pyc
│ │ │ ├── new.pyc
│ │ │ ├── ntpath.pyc
│ │ │ ├── nturl2path.pyc
│ │ │ ├── numpy
│ │ │ │ ├── add_newdocs.pyc
│ │ │ │ ├── compat
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── _inspect.pyc
│ │ │ │ │ └── py3k.pyc
│ │ │ │ ├── __config__.pyc
│ │ │ │ ├── core
│ │ │ │ │ ├── arrayprint.pyc
│ │ │ │ │ ├── defchararray.pyc
│ │ │ │ │ ├── _dotblas.pyd
│ │ │ │ │ ├── fromnumeric.pyc
│ │ │ │ │ ├── function_base.pyc
│ │ │ │ │ ├── getlimits.pyc
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── _internal.pyc
│ │ │ │ │ ├── machar.pyc
│ │ │ │ │ ├── memmap.pyc
│ │ │ │ │ ├── _methods.pyc
│ │ │ │ │ ├── multiarray.pyd
│ │ │ │ │ ├── numeric.pyc
│ │ │ │ │ ├── numerictypes.pyc
│ │ │ │ │ ├── records.pyc
│ │ │ │ │ ├── scalarmath.pyd
│ │ │ │ │ ├── shape_base.pyc
│ │ │ │ │ └── umath.pyd
│ │ │ │ ├── ctypeslib.pyc
│ │ │ │ ├── distutils
│ │ │ │ │ ├── ccompiler.pyc
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── autodist.pyc
│ │ │ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ │ │ ├── build_clib.pyc
│ │ │ │ │ │ ├── build_ext.pyc
│ │ │ │ │ │ ├── build.pyc
│ │ │ │ │ │ ├── build_py.pyc
│ │ │ │ │ │ ├── build_scripts.pyc
│ │ │ │ │ │ ├── build_src.pyc
│ │ │ │ │ │ ├── config_compiler.pyc
│ │ │ │ │ │ ├── config.pyc
│ │ │ │ │ │ ├── develop.pyc
│ │ │ │ │ │ ├── egg_info.pyc
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── install_clib.pyc
│ │ │ │ │ │ ├── install_data.pyc
│ │ │ │ │ │ ├── install_headers.pyc
│ │ │ │ │ │ ├── install.pyc
│ │ │ │ │ │ ├── scons.pyc
│ │ │ │ │ │ └── sdist.pyc
│ │ │ │ │ ├── compat.pyc
│ │ │ │ │ ├── __config__.pyc
│ │ │ │ │ ├── conv_template.pyc
│ │ │ │ │ ├── core.pyc
│ │ │ │ │ ├── cpuinfo.pyc
│ │ │ │ │ ├── environment.pyc
│ │ │ │ │ ├── exec_command.pyc
│ │ │ │ │ ├── extension.pyc
│ │ │ │ │ ├── fcompiler
│ │ │ │ │ │ └── __init__.pyc
│ │ │ │ │ ├── from_template.pyc
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── interactive.pyc
│ │ │ │ │ ├── lib2def.pyc
│ │ │ │ │ ├── log.pyc
│ │ │ │ │ ├── mingw32ccompiler.pyc
│ │ │ │ │ ├── misc_util.pyc
│ │ │ │ │ ├── npy_pkg_config.pyc
│ │ │ │ │ ├── numpy_distribution.pyc
│ │ │ │ │ ├── system_info.pyc
│ │ │ │ │ ├── unixccompiler.pyc
│ │ │ │ │ └── __version__.pyc
│ │ │ │ ├── dual.pyc
│ │ │ │ ├── f2py
│ │ │ │ │ ├── auxfuncs.pyc
│ │ │ │ │ ├── capi_maps.pyc
│ │ │ │ │ ├── cb_rules.pyc
│ │ │ │ │ ├── cfuncs.pyc
│ │ │ │ │ ├── common_rules.pyc
│ │ │ │ │ ├── crackfortran.pyc
│ │ │ │ │ ├── diagnose.pyc
│ │ │ │ │ ├── f2py2e.pyc
│ │ │ │ │ ├── f2py_testing.pyc
│ │ │ │ │ ├── f90mod_rules.pyc
│ │ │ │ │ ├── func2subr.pyc
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── rules.pyc
│ │ │ │ │ ├── use_rules.pyc
│ │ │ │ │ └── __version__.pyc
│ │ │ │ ├── fft
│ │ │ │ │ ├── fftpack_lite.pyd
│ │ │ │ │ ├── fftpack.pyc
│ │ │ │ │ ├── helper.pyc
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── _import_tools.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── lib
│ │ │ │ │ ├── arraypad.pyc
│ │ │ │ │ ├── arraysetops.pyc
│ │ │ │ │ ├── arrayterator.pyc
│ │ │ │ │ ├── _compiled_base.pyd
│ │ │ │ │ ├── _datasource.pyc
│ │ │ │ │ ├── financial.pyc
│ │ │ │ │ ├── format.pyc
│ │ │ │ │ ├── function_base.pyc
│ │ │ │ │ ├── index_tricks.pyc
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── _iotools.pyc
│ │ │ │ │ ├── npyio.pyc
│ │ │ │ │ ├── polynomial.pyc
│ │ │ │ │ ├── scimath.pyc
│ │ │ │ │ ├── shape_base.pyc
│ │ │ │ │ ├── stride_tricks.pyc
│ │ │ │ │ ├── twodim_base.pyc
│ │ │ │ │ ├── type_check.pyc
│ │ │ │ │ ├── ufunclike.pyc
│ │ │ │ │ └── utils.pyc
│ │ │ │ ├── linalg
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── lapack_lite.pyd
│ │ │ │ │ └── linalg.pyc
│ │ │ │ ├── ma
│ │ │ │ │ ├── core.pyc
│ │ │ │ │ ├── extras.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ └── mrecords.pyc
│ │ │ │ ├── matrixlib
│ │ │ │ │ ├── defmatrix.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── numarray
│ │ │ │ │ ├── compat.pyc
│ │ │ │ │ ├── functions.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── numerictypes.pyc
│ │ │ │ │ ├── session.pyc
│ │ │ │ │ ├── ufuncs.pyc
│ │ │ │ │ └── util.pyc
│ │ │ │ ├── polynomial
│ │ │ │ │ ├── chebyshev.pyc
│ │ │ │ │ ├── hermite_e.pyc
│ │ │ │ │ ├── hermite.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── laguerre.pyc
│ │ │ │ │ ├── legendre.pyc
│ │ │ │ │ ├── polynomial.pyc
│ │ │ │ │ ├── polytemplate.pyc
│ │ │ │ │ └── polyutils.pyc
│ │ │ │ ├── random
│ │ │ │ │ ├── info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ └── mtrand.pyd
│ │ │ │ ├── testing
│ │ │ │ │ ├── decorators.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── noseclasses.pyc
│ │ │ │ │ ├── nosetester.pyc
│ │ │ │ │ ├── numpytest.pyc
│ │ │ │ │ └── utils.pyc
│ │ │ │ └── version.pyc
│ │ │ ├── opcode.pyc
│ │ │ ├── optparse.pyc
│ │ │ ├── os2emxpath.pyc
│ │ │ ├── os.pyc
│ │ │ ├── _osx_support.pyc
│ │ │ ├── pdb.pyc
│ │ │ ├── pkg_resources.pyc
│ │ │ ├── pkgutil.pyc
│ │ │ ├── platform.pyc
│ │ │ ├── plistlib.pyc
│ │ │ ├── posixpath.pyc
│ │ │ ├── pprint.pyc
│ │ │ ├── printrun
│ │ │ │ ├── bufferedcanvas.pyc
│ │ │ │ ├── excluder.pyc
│ │ │ │ ├── gcodeplater.pyc
│ │ │ │ ├── gcoder_line.pyd
│ │ │ │ ├── gcoder.pyc
│ │ │ │ ├── gcview.pyc
│ │ │ │ ├── gl
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── libtatlin
│ │ │ │ │ │ ├── actors.pyc
│ │ │ │ │ │ └── __init__.pyc
│ │ │ │ │ ├── panel.pyc
│ │ │ │ │ └── trackball.pyc
│ │ │ │ ├── graph.pyc
│ │ │ │ ├── gui.pyc
│ │ │ │ ├── gviz.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── objectplater.pyc
│ │ │ │ ├── packer.pyc
│ │ │ │ ├── plater.pyc
│ │ │ │ ├── printcore.pyc
│ │ │ │ ├── printrun_utils.pyc
│ │ │ │ ├── projectlayer.pyc
│ │ │ │ ├── pronsole.pyc
│ │ │ │ ├── pronterface.pyc
│ │ │ │ ├── pronterface_widgets.pyc
│ │ │ │ ├── stltool.pyc
│ │ │ │ ├── stlview.pyc
│ │ │ │ ├── xybuttons.pyc
│ │ │ │ └── zbuttons.pyc
│ │ │ ├── py_compile.pyc
│ │ │ ├── pydoc_data
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── topics.pyc
│ │ │ ├── pydoc.pyc
│ │ │ ├── pyexpat.pyd
│ │ │ ├── pyglet
│ │ │ │ ├── app
│ │ │ │ │ ├── carbon.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── win32.pyc
│ │ │ │ │ └── xlib.pyc
│ │ │ │ ├── clock.pyc
│ │ │ │ ├── com.pyc
│ │ │ │ ├── event.pyc
│ │ │ │ ├── font
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── carbon.pyc
│ │ │ │ │ ├── freetype_lib.pyc
│ │ │ │ │ ├── freetype.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ └── win32.pyc
│ │ │ │ ├── gl
│ │ │ │ │ ├── agl.pyc
│ │ │ │ │ ├── glext_arb.pyc
│ │ │ │ │ ├── glext_missing.pyc
│ │ │ │ │ ├── gl_info.pyc
│ │ │ │ │ ├── gl.pyc
│ │ │ │ │ ├── glu_info.pyc
│ │ │ │ │ ├── glu.pyc
│ │ │ │ │ ├── glxext_arb.pyc
│ │ │ │ │ ├── glxext_mesa.pyc
│ │ │ │ │ ├── glx_info.pyc
│ │ │ │ │ ├── glx.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── lib_agl.pyc
│ │ │ │ │ ├── lib_glx.pyc
│ │ │ │ │ ├── lib.pyc
│ │ │ │ │ ├── lib_wgl.pyc
│ │ │ │ │ ├── wglext_arb.pyc
│ │ │ │ │ ├── wgl_info.pyc
│ │ │ │ │ └── wgl.pyc
│ │ │ │ ├── graphics
│ │ │ │ │ ├── allocation.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── vertexattribute.pyc
│ │ │ │ │ ├── vertexbuffer.pyc
│ │ │ │ │ └── vertexdomain.pyc
│ │ │ │ ├── image
│ │ │ │ │ ├── atlas.pyc
│ │ │ │ │ ├── codecs
│ │ │ │ │ │ ├── bmp.pyc
│ │ │ │ │ │ ├── dds.pyc
│ │ │ │ │ │ ├── gdiplus.pyc
│ │ │ │ │ │ ├── gdkpixbuf2.pyc
│ │ │ │ │ │ ├── gif.pyc
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── pil.pyc
│ │ │ │ │ │ ├── png.pyc
│ │ │ │ │ │ ├── pypng.pyc
│ │ │ │ │ │ ├── quicktime.pyc
│ │ │ │ │ │ └── s3tc.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── lib.pyc
│ │ │ │ ├── media
│ │ │ │ │ ├── avbin.pyc
│ │ │ │ │ ├── drivers
│ │ │ │ │ │ ├── alsa
│ │ │ │ │ │ │ ├── asound.pyc
│ │ │ │ │ │ │ └── __init__.pyc
│ │ │ │ │ │ ├── directsound
│ │ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ │ └── lib_dsound.pyc
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── openal
│ │ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ │ ├── lib_alc.pyc
│ │ │ │ │ │ │ └── lib_openal.pyc
│ │ │ │ │ │ └── silent.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ └── riff.pyc
│ │ │ │ ├── resource.pyc
│ │ │ │ ├── sprite.pyc
│ │ │ │ ├── text
│ │ │ │ │ ├── caret.pyc
│ │ │ │ │ ├── document.pyc
│ │ │ │ │ ├── formats
│ │ │ │ │ │ ├── attributed.pyc
│ │ │ │ │ │ ├── html.pyc
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── plaintext.pyc
│ │ │ │ │ │ └── structured.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── layout.pyc
│ │ │ │ │ └── runlist.pyc
│ │ │ │ └── window
│ │ │ │ ├── carbon
│ │ │ │ │ ├── constants.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── quartzkey.pyc
│ │ │ │ │ └── types.pyc
│ │ │ │ ├── event.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── key.pyc
│ │ │ │ ├── mouse.pyc
│ │ │ │ ├── win32
│ │ │ │ │ ├── constants.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── types.pyc
│ │ │ │ │ └── winkey.pyc
│ │ │ │ └── xlib
│ │ │ │ ├── cursorfont.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── xinerama.pyc
│ │ │ │ ├── xlib.pyc
│ │ │ │ └── xsync.pyc
│ │ │ ├── Queue.pyc
│ │ │ ├── quopri.pyc
│ │ │ ├── random.pyc
│ │ │ ├── repr.pyc
│ │ │ ├── re.pyc
│ │ │ ├── rfc822.pyc
│ │ │ ├── select.pyd
│ │ │ ├── serial
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── serialcli.pyc
│ │ │ │ ├── serialjava.pyc
│ │ │ │ ├── serialposix.pyc
│ │ │ │ ├── serialutil.pyc
│ │ │ │ ├── serialwin32.pyc
│ │ │ │ └── win32.pyc
│ │ │ ├── sets.pyc
│ │ │ ├── setuptools
│ │ │ │ ├── archive_util.pyc
│ │ │ │ ├── command
│ │ │ │ │ ├── bdist_egg.pyc
│ │ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ │ ├── develop.pyc
│ │ │ │ │ ├── easy_install.pyc
│ │ │ │ │ ├── egg_info.pyc
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── install_lib.pyc
│ │ │ │ │ ├── install.pyc
│ │ │ │ │ ├── sdist.pyc
│ │ │ │ │ └── setopt.pyc
│ │ │ │ ├── depends.pyc
│ │ │ │ ├── dist.pyc
│ │ │ │ ├── extension.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── package_index.pyc
│ │ │ │ └── sandbox.pyc
│ │ │ ├── shlex.pyc
│ │ │ ├── shutil.pyc
│ │ │ ├── site.pyc
│ │ │ ├── socket.pyc
│ │ │ ├── _socket.pyd
│ │ │ ├── SocketServer.pyc
│ │ │ ├── sre_compile.pyc
│ │ │ ├── sre_constants.pyc
│ │ │ ├── sre_parse.pyc
│ │ │ ├── sre.pyc
│ │ │ ├── ssl.pyc
│ │ │ ├── stat.pyc
│ │ │ ├── StringIO.pyc
│ │ │ ├── stringprep.pyc
│ │ │ ├── string.pyc
│ │ │ ├── _strptime.pyc
│ │ │ ├── struct.pyc
│ │ │ ├── subprocess.pyc
│ │ │ ├── symbol.pyc
│ │ │ ├── symtable.pyc
│ │ │ ├── sysconfig.pyc
│ │ │ ├── tarfile.pyc
│ │ │ ├── tempfile.pyc
│ │ │ ├── textwrap.pyc
│ │ │ ├── _threading_local.pyc
│ │ │ ├── threading.pyc
│ │ │ ├── tokenize.pyc
│ │ │ ├── token.pyc
│ │ │ ├── traceback.pyc
│ │ │ ├── tty.pyc
│ │ │ ├── types.pyc
│ │ │ ├── unicodedata.pyd
│ │ │ ├── unittest
│ │ │ │ ├── case.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── loader.pyc
│ │ │ │ ├── main.pyc
│ │ │ │ ├── result.pyc
│ │ │ │ ├── runner.pyc
│ │ │ │ ├── signals.pyc
│ │ │ │ ├── suite.pyc
│ │ │ │ └── util.pyc
│ │ │ ├── urllib2.pyc
│ │ │ ├── urllib.pyc
│ │ │ ├── urlparse.pyc
│ │ │ ├── UserDict.pyc
│ │ │ ├── uu.pyc
│ │ │ ├── warnings.pyc
│ │ │ ├── weakref.pyc
│ │ │ ├── _weakrefset.pyc
│ │ │ ├── webbrowser.pyc
│ │ │ ├── wx
│ │ │ │ ├── _controls.pyc
│ │ │ │ ├── _controls_.pyd
│ │ │ │ ├── _core.pyc
│ │ │ │ ├── _core_.pyd
│ │ │ │ ├── _gdi.pyc
│ │ │ │ ├── _gdi_.pyd
│ │ │ │ ├── glcanvas.pyc
│ │ │ │ ├── _glcanvas.pyd
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── lib
│ │ │ │ │ ├── agw
│ │ │ │ │ │ ├── floatspin.pyc
│ │ │ │ │ │ └── __init__.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── _misc.pyc
│ │ │ │ ├── _misc_.pyd
│ │ │ │ ├── __version__.pyc
│ │ │ │ ├── _windows.pyc
│ │ │ │ └── _windows_.pyd
│ │ │ ├── wxbase28uh_net_vc.dll
│ │ │ ├── wxbase28uh_vc.dll
│ │ │ ├── wxmsw28uh_adv_vc.dll
│ │ │ ├── wxmsw28uh_core_vc.dll
│ │ │ ├── wxmsw28uh_gl_vc.dll
│ │ │ ├── wxmsw28uh_html_vc.dll
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ ├── ElementPath.pyc
│ │ │ │ │ ├── ElementTree.pyc
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── parsers
│ │ │ │ ├── expat.pyc
│ │ │ │ └── __init__.pyc
│ │ │ ├── zipextimporter.pyc
│ │ │ └── zipfile.pyc
│ │ ├── library.zip
│ │ ├── locale
│ │ │ ├── de
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── plater.mo
│ │ │ │ ├── plater.po
│ │ │ │ ├── pronterface.mo
│ │ │ │ └── pronterface.po
│ │ │ ├── fr
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── plater.mo
│ │ │ │ ├── plater.po
│ │ │ │ ├── pronterface.mo
│ │ │ │ └── pronterface.po
│ │ │ ├── it
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── plater.mo
│ │ │ │ ├── plater.po
│ │ │ │ ├── pronterface.mo
│ │ │ │ └── pronterface.po
│ │ │ ├── nl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── nl.po
│ │ │ │ └── pronterface.mo
│ │ │ ├── plater.pot
│ │ │ └── pronterface.pot
│ │ ├── msvcp90.dll
│ │ ├── plater.exe
│ │ ├── pronsole.exe
│ │ ├── pronterface.exe
│ │ └── Slic3r
│ │ ├── bin
│ │ │ └── cpfworkrt
│ │ │ ├── cpfworkrt.manifest
│ │ │ ├── libgcc_s_sjlj-1.dll
│ │ │ ├── libstdc++-6.dll
│ │ │ └── perl514.dll
│ │ ├── cpfworkrt
│ │ │ ├── cpfworkrt.manifest
│ │ │ ├── libgcc_s_sjlj-1.dll
│ │ │ ├── libstdc++-6.dll
│ │ │ └── perl514.dll
│ │ ├── dll
│ │ │ ├── cpwgui.exe
│ │ │ ├── wxbase293u_gcc_citrusperl.dll
│ │ │ ├── wxbase293u_net_gcc_citrusperl.dll
│ │ │ ├── wxmsw293u_adv_gcc_citrusperl.dll
│ │ │ ├── wxmsw293u_core_gcc_citrusperl.dll
│ │ │ ├── wxmsw293u_gl_gcc_citrusperl.dll
│ │ │ └── wxmsw293u_html_gcc_citrusperl.dll
│ │ ├── lib
│ │ │ ├── std
│ │ │ │ ├── Mozilla
│ │ │ │ │ ├── CA
│ │ │ │ │ │ └── cacert.pem
│ │ │ │ │ └── CA.pm
│ │ │ │ └── XML
│ │ │ │ └── SAX
│ │ │ │ └── ParserDetails.ini
│ │ │ └── vrt
│ │ │ ├── 00065b3cc7c31741588c51da0ebf7cfc
│ │ │ │ └── Storable.dll
│ │ │ ├── 0e211ef5300e42b7129e72ce6934dd03
│ │ │ │ └── File.dll
│ │ │ ├── 11897113663a72e0cf3a40f86569d0d3
│ │ │ │ └── package.lib
│ │ │ ├── 13887bf5057dfc645e73f9cbc2107b0b
│ │ │ │ └── shared.dll
│ │ │ ├── 13b74231834b96c1b29d9bb7ff9fc803
│ │ │ │ └── XSAccessor.dll
│ │ │ ├── 167f94b9b2e25997b9059d74e205a3bc
│ │ │ │ └── Cwd.dll
│ │ │ ├── 17a8fd354d07706b1d8e07133653aefe
│ │ │ │ └── Unicode.dll
│ │ │ ├── 1ad0723efd66d7d167300d614e12cbf1
│ │ │ │ └── Util.dll
│ │ │ ├── 1ff31eb32e672b10095dc07142eda94e
│ │ │ │ └── Byte.dll
│ │ │ ├── 212acdb3b0d578c6c31b6f5b102aaf9f
│ │ │ │ ├── freeglut.dll
│ │ │ │ └── OpenGL.dll
│ │ │ ├── 25bfd29251dc50ed459f0ba7c0b9546e
│ │ │ │ └── Utils.dll
│ │ │ ├── 27c1b104f040ed126344628a72b4402e
│ │ │ │ └── Utils.dll
│ │ │ ├── 2b09d17ec43a6c01f265254b54d60739
│ │ │ │ └── Dumper.dll
│ │ │ ├── 2ce0a6f8648060f015cf6b795bedf11d
│ │ │ │ └── SHA.dll
│ │ │ ├── 3545b2d83c9d9a29194f9ab80ec5474b
│ │ │ │ └── Fcntl.dll
│ │ │ ├── 38786f297f552b7038b60152ad9b90fc
│ │ │ │ └── ExpatXS.dll
│ │ │ ├── 3c3de1da0ef49b28f0e9b30e3b988b48
│ │ │ │ └── Clipper.dll
│ │ │ ├── 3d306f1634430f34d0521f8ea684e9ec
│ │ │ │ └── SSLeay.dll
│ │ │ ├── 3ea9b1cd80f790518c416324dd069ebd
│ │ │ │ └── encoding.dll
│ │ │ ├── 41c42900fc0d462e9a31e174ac8a654c
│ │ │ │ └── Html.dll
│ │ │ ├── 42c3d19347a691f255d231da3d91f1ab
│ │ │ │ └── package.lib
│ │ │ ├── 4699e2a2c6a572106b4070861d78c22a
│ │ │ │ └── Parser.dll
│ │ │ ├── 46c688003f4a63abb5816f68b951f727
│ │ │ │ └── MD5.dll
│ │ │ ├── 471029ae61c0427e58f24ac9e5a0cca5
│ │ │ │ └── package.lib
│ │ │ ├── 49bdccea41102e6d90906b74653d30ab
│ │ │ │ └── HiRes.dll
│ │ │ ├── 4bf02964b82dcfe8363bdea195fcb63a
│ │ │ │ └── XS.dll
│ │ │ ├── 4c9065158b425703c56336bd7fd5bbf2
│ │ │ │ └── SSLeay.dll
│ │ │ ├── 50e0982503943dcf3f001fc2d17d4075
│ │ │ │ └── JP.dll
│ │ │ ├── 528ccea98cad02a5f453a7135f9ca183
│ │ │ │ └── package.lib
│ │ │ ├── 602e48725f031e37e2117fea4547cc4c
│ │ │ │ └── Storable.dll
│ │ │ ├── 6419170f57dff2f058fefa3f8f37c897
│ │ │ │ └── EBCDIC.dll
│ │ │ ├── 655af4e236089eadb910a60a39fbe815
│ │ │ │ └── attributes.dll
│ │ │ ├── 67b60594c28e01e3b86131c1293ee6ba
│ │ │ │ └── Voronoi.dll
│ │ │ ├── 6c123a3a5b411759cc21a293df5bed0e
│ │ │ │ └── SealRequireHints.dll
│ │ │ ├── 7ba0890aa8ff0eed7abb9f76181bd637
│ │ │ │ └── Console.dll
│ │ │ ├── 7ef678fd3db32983bdf488c788a3a763
│ │ │ │ └── IO.dll
│ │ │ ├── 7f03307893d02e1dcec3f5ba36f8b382
│ │ │ │ └── XSAccessor.dll
│ │ │ ├── 804f15d0b003b04c3feb68e47adacf8d
│ │ │ │ └── package.lib
│ │ │ ├── 83bcdb15ceca1fa9262a73ac23813fb6
│ │ │ │ └── Util.dll
│ │ │ ├── 8f7c428c727a7d81643b50b598197734
│ │ │ │ └── API.dll
│ │ │ ├── 8fa3f50b03f9cb0203031cf516aa3973
│ │ │ │ └── B.dll
│ │ │ ├── 9573d0f8956394a9448b7cb70a24fed3
│ │ │ │ └── CN.dll
│ │ │ ├── 9a02fe0b6c8a35ffbf56e88f9910abeb
│ │ │ │ └── Base64.dll
│ │ │ ├── 9cc90b876890f13970933c948cbb4b2e
│ │ │ │ └── Print.dll
│ │ │ ├── 9d4869e43aaebbcbfc9baec70819f444
│ │ │ │ └── indirect.dll
│ │ │ ├── a3600f18eb88b7c4835e2438eeda19b1
│ │ │ │ └── Symbol.dll
│ │ │ ├── a3719ad0fa76c06423d0397090ec4ed9
│ │ │ │ └── Libm.dll
│ │ │ ├── a40249e26296df558fcddd2c8cbfb2f6
│ │ │ │ └── UUID.dll
│ │ │ ├── aa455d4af51625c2acacb6716c0a6e01
│ │ │ │ └── scalar.dll
│ │ │ ├── aa976c80169f479f0613ff5283377098
│ │ │ │ └── Win32.dll
│ │ │ ├── ad648dbf31179700b4efd00b04f50dab
│ │ │ │ └── multidimensional.dll
│ │ │ ├── afd7a882f0d95ad580de18c26a9dd189
│ │ │ │ └── MonotoneChain.dll
│ │ │ ├── b48cd6cc5170110b04444736f8ca1a04
│ │ │ │ └── mro.dll
│ │ │ ├── b6a5c6ef2abf4a7046bb88d7a8b220ff
│ │ │ │ └── GLCanvas.dll
│ │ │ ├── bd26fbb8f6447c2e98cf359976a3c1a7
│ │ │ │ └── POSIX.dll
│ │ │ ├── c23df991c561704a8913289bdfea9462
│ │ │ │ └── Zlib.dll
│ │ │ ├── c373a2962497b34c305d2f12927a85e4
│ │ │ │ └── HiRes.dll
│ │ │ ├── c8786c44f0a905ffe6d5d8a4068a75c2
│ │ │ │ └── Call.dll
│ │ │ ├── cbbb6d80da8c62ee893a65195943b803
│ │ │ │ └── re.dll
│ │ │ ├── cbfee14465f0627fbadfcc84b97d402b
│ │ │ │ └── KR.dll
│ │ │ ├── cd0b5b2fa854963191ca9718e26a0abc
│ │ │ │ └── Grid.dll
│ │ │ ├── ceb3487499a2d7f0edbcc6aa0c0536c1
│ │ │ │ └── NamedCapture.dll
│ │ │ ├── cfbd454ca865af139a419af806f1d4c7
│ │ │ │ └── DND.dll
│ │ │ ├── cfcde55111d441748de61cc95acb240e
│ │ │ │ └── Check.dll
│ │ │ ├── d0b4c3dceefb5d08dbe60f0e68d0da76
│ │ │ │ └── filehandles.dll
│ │ │ ├── d9c3e3943b3f28bc1f09e2f713cc6afb
│ │ │ │ └── Glob.dll
│ │ │ ├── e29b9764cd99fd442815834972733f63
│ │ │ │ └── Encode.dll
│ │ │ ├── e4feeab9dcd0298dcbe51bc11d62ff80
│ │ │ │ └── Cwd.dll
│ │ │ ├── e51409fbea61e7f44156de0a7d61ce6e
│ │ │ │ └── FastCalc.dll
│ │ │ ├── eaa3f41565bf2fe58068d68f47a06165
│ │ │ │ └── Bzip2.dll
│ │ │ ├── ef0a1b3a50dcc9984703f576320986af
│ │ │ │ └── Socket.dll
│ │ │ ├── efa78e66d1d123d9a6f5890b6ca9167a
│ │ │ │ └── TW.dll
│ │ │ ├── f490c3f60de8989339da70e91e2faf32
│ │ │ │ └── threads.dll
│ │ │ ├── f5fed2e89bc352dbab7909c4d8072ee5
│ │ │ │ └── Libm.dll
│ │ │ ├── f6025e058c0367c56e8eed568e60077b
│ │ │ │ └── Clone.dll
│ │ │ ├── f8d8299b70fb38b8f4ba594e6f23c91f
│ │ │ │ └── XS.dll
│ │ │ ├── fa119178d164dcf97f19aecc876231c0
│ │ │ │ └── package.lib
│ │ │ ├── fadbe2ebaf950eb9e5e3c3d65739aa92
│ │ │ │ └── via.dll
│ │ │ └── fb078e7d1a272046eb7bd617bd3ed5c4
│ │ │ └── Wx.dll
│ │ ├── res
│ │ │ ├── add.png
│ │ │ ├── arrow_out.png
│ │ │ ├── arrow_rotate_anticlockwise.png
│ │ │ ├── arrow_rotate_clockwise.png
│ │ │ ├── arrow_up.png
│ │ │ ├── box.png
│ │ │ ├── brick_add.png
│ │ │ ├── brick_delete.png
│ │ │ ├── brick_go.png
│ │ │ ├── bricks.png
│ │ │ ├── building.png
│ │ │ ├── bullet_black.png
│ │ │ ├── bullet_blue.png
│ │ │ ├── bullet_white.png
│ │ │ ├── cog_go.png
│ │ │ ├── cog.png
│ │ │ ├── cross.png
│ │ │ ├── delete.png
│ │ │ ├── disk.png
│ │ │ ├── error.png
│ │ │ ├── funnel.png
│ │ │ ├── hourglass.png
│ │ │ ├── layers.png
│ │ │ ├── note.png
│ │ │ ├── package.png
│ │ │ ├── page_white_go.png
│ │ │ ├── printer_empty.png
│ │ │ ├── shading.png
│ │ │ ├── shape_ungroup.png
│ │ │ ├── Slic3r_128px.png
│ │ │ ├── Slic3r_192px.png
│ │ │ ├── Slic3r_192px_transparent.png
│ │ │ ├── Slic3r.icns
│ │ │ ├── Slic3r.ico
│ │ │ ├── Slic3r.png
│ │ │ ├── spool.png
│ │ │ ├── time.png
│ │ │ └── wrench.png
│ │ ├── slic3r-console.exe
│ │ └── slic3r.exe
│ ├── RepetierHost_0_95_setup
│ │ └── setupRepetierHost_0_95.exe
│ ├── Slic3r(切片)_翻译
│ │ ├── Filament Setting1.1_Filament.png
│ │ ├── Filament Setting1.2_Cooling.png
│ │ ├── Print Settings1.1_Layers and perimeters.png
│ │ ├── Print Settings1.2_Infill.png
│ │ ├── Print Settings1.3_Speed.png
│ │ ├── Print Settings1.4_Skirt and brim.png
│ │ ├── Print Settings1.5_Support material.png
│ │ ├── Print Settings1.6_Notes.png
│ │ ├── Print Settings1.7_Output options.png
│ │ ├── Print Settings1.8_Multiple Extruders.png
│ │ ├── Print Settings1.9_Advanced.png
│ │ ├── Print Settings_2.1_General.png
│ │ ├── Print Settings_2.2_Custom G-code.png
│ │ ├── Print Settings_2.3_Extruder 1.png
│ │ ├── SLIC3R--快速设置-
│ │ │ ├── 001.png
│ │ │ ├── 002.png
│ │ │ ├── 003.png
│ │ │ ├── 004.png
│ │ │ ├── 005.png
│ │ │ ├── 006.png
│ │ │ ├── 007.png
│ │ │ ├── 008.png
│ │ │ ├── 009.png
│ │ │ ├── 010.png
│ │ │ └── 011.png
│ │ └── Thumbs.db
│ ├── Slic3r汉化破解版.rar
│ ├── 原始资料
│ │ ├── Cura_14.06中文版.exe
│ │ ├── Printrun-Win-Slic3r(切片上位).zip
│ │ ├── RepetierHost_0_95_setup.rar
│ │ ├── simplify3d_2.1.0_x86_破解(切片上位).rar
│ │ ├── slic3r-mswin-x64-1-0-1-stable.zip
│ │ ├── slic3r-mswin-x86-1-0-1-stable.zip
│ │ └── Slic3r_翻译.zip
│ └── 建议.txt
├── 打印机常见问题.txt
├── 自动调平G代码.txt
└── 零件清单
├── K800购物清单(摘自群主神贴).xlsx
├── 修改后螺丝配件.xlsx
├── 改动参数.txt
└── 螺丝清单.xlsx
323 directories, 1784 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论