实例介绍
关键部分均有中文注释的marlin固件,只需依照指示对固件关键参数进行修改即可用于您的3D打印机!包含U8glib运行库及运行库操作指南。若您是12864屏幕,可参照该指南解决屏幕显示问题!
【实例截图】
【核心代码】
4744300845185320719.rar
├── 1.jpg
├── 2.png
├── 3.png
├── 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
├── 新建文件夹
│ ├── buildroot
│ │ ├── bin
│ │ │ ├── build_marlin
│ │ │ ├── build_marlin_fail
│ │ │ ├── generate_version_header_for_marlin
│ │ │ ├── opt_add
│ │ │ ├── opt_add_adv
│ │ │ ├── opt_disable
│ │ │ ├── opt_disable_adv
│ │ │ ├── opt_enable
│ │ │ ├── opt_enable_adv
│ │ │ ├── opt_set
│ │ │ ├── opt_set_adv
│ │ │ ├── pins_set
│ │ │ ├── restore_configs
│ │ │ ├── travis_at_home
│ │ │ └── use_example_configs
│ │ ├── etc
│ │ └── share
│ │ ├── atom
│ │ │ ├── auto_build.py
│ │ │ ├── avrdude_5.10_linux
│ │ │ ├── avrdude_5.10_macOS
│ │ │ ├── avrdude.conf
│ │ │ ├── avrdude_linux.conf
│ │ │ ├── avrdude_macOS.conf
│ │ │ ├── create_custom_upload_command_CDC.py
│ │ │ └── create_custom_upload_command_DFU.py
│ │ ├── cmake
│ │ │ └── CMakeLists.txt
│ │ ├── fonts
│ │ │ ├── HD44780_C.fon
│ │ │ ├── HD44780_J.fon
│ │ │ ├── HD44780_W.fon
│ │ │ ├── ISO10646-1.fon
│ │ │ ├── ISO10646-1-tr.fon
│ │ │ ├── ISO10646-4_Greek.fon
│ │ │ ├── ISO10646-5_Cyrillic.fon
│ │ │ ├── ISO10646_CN.fon
│ │ │ ├── ISO10646_CZ.fon
│ │ │ ├── ISO10646_Kana.fon
│ │ │ ├── ISO10646_SK.fon
│ │ │ ├── make_fonts.bat
│ │ │ ├── Marlin_symbols.fon
│ │ │ └── README.md
│ │ ├── git
│ │ │ ├── firstpush
│ │ │ ├── ghtp
│ │ │ ├── mfadd
│ │ │ ├── mfclean
│ │ │ ├── mfdoc
│ │ │ ├── mffp
│ │ │ ├── mfinfo
│ │ │ ├── mfinit
│ │ │ ├── mfnew
│ │ │ ├── mfpr
│ │ │ ├── mfpub
│ │ │ ├── mfqp
│ │ │ ├── mfrb
│ │ │ ├── mfup
│ │ │ └── README.md
│ │ ├── pin_interrupt_test
│ │ │ └── pin_interrupt_test.ino
│ │ ├── pixmaps
│ │ │ └── logo
│ │ │ ├── marlin-1080.png
│ │ │ ├── marlin-250.png
│ │ │ ├── marlin-old-250.png
│ │ │ ├── marlin-old-627.png
│ │ │ ├── marlin-old.svg
│ │ │ └── marlin.svg
│ │ ├── PlatformIO
│ │ │ └── boards
│ │ │ └── at90usb1286.json
│ │ ├── scripts
│ │ │ ├── createSpeedLookupTable.py
│ │ │ ├── createTemperatureLookupMarlin.py
│ │ │ ├── findMissingTranslations.sh
│ │ │ ├── g29_auto.py
│ │ │ └── MarlinMesh.scad
│ │ ├── sublime
│ │ │ ├── auto_build_sublime_menu
│ │ │ │ ├── 000_read_me.txt
│ │ │ │ └── Main.sublime-menu
│ │ │ └── MarlinFirmware.sublime-project
│ │ └── vscode
│ │ └── AutoBuildMarlin
│ │ ├── extension.js
│ │ ├── media
│ │ │ └── AB.svg
│ │ ├── package.json
│ │ ├── package-lock.json
│ │ ├── README.md
│ │ ├── resources
│ │ │ ├── AB_menu.png
│ │ │ ├── Activity_bar.png
│ │ │ ├── B24x24_white.svg
│ │ │ ├── B32x32_white.svg
│ │ │ ├── B_small.svg
│ │ │ ├── Build.png
│ │ │ ├── C32x32_white.svg
│ │ │ ├── Clean.png
│ │ │ ├── C_small.svg
│ │ │ ├── install_extensions.png
│ │ │ ├── Open_Folder.png
│ │ │ ├── Open_Marlin.png
│ │ │ ├── platformio_install.png
│ │ │ ├── T32x32_white.svg
│ │ │ ├── Traceback.png
│ │ │ ├── U32x32_white.svg
│ │ │ ├── Upload.png
│ │ │ ├── U_small.svg
│ │ │ ├── Ut32x32_white.svg
│ │ │ ├── Ut_small.svg
│ │ │ └── view_command_palette.png
│ │ └── tsconfig.json
│ ├── LICENSE
│ ├── Marlin
│ │ ├── bitmap_flags.h
│ │ ├── blinkm.cpp
│ │ ├── blinkm.h
│ │ ├── boards.h
│ │ ├── _Bootscreen.h
│ │ ├── buzzer.h
│ │ ├── cardreader.cpp
│ │ ├── cardreader.h
│ │ ├── circularqueue.h
│ │ ├── Conditionals.h
│ │ ├── Conditionals_LCD.h
│ │ ├── Conditionals_post.h
│ │ ├── Configuration_adv.h
│ │ ├── Configuration.h
│ │ ├── configuration_store.cpp
│ │ ├── configuration_store.h
│ │ ├── dac_mcp4728.cpp
│ │ ├── dac_mcp4728.h
│ │ ├── delay.h
│ │ ├── digipot_mcp4018.cpp
│ │ ├── digipot_mcp4451.cpp
│ │ ├── dogm_bitmaps.h
│ │ ├── dogm_font_data_6x9_marlin.h
│ │ ├── dogm_font_data_HD44780_C.h
│ │ ├── dogm_font_data_HD44780_J.h
│ │ ├── dogm_font_data_HD44780_W.h
│ │ ├── dogm_font_data_ISO10646_1.h
│ │ ├── dogm_font_data_ISO10646_1_PL.h
│ │ ├── dogm_font_data_ISO10646_1_tr.h
│ │ ├── dogm_font_data_ISO10646_5_Cyrillic.h
│ │ ├── dogm_font_data_ISO10646_CN.h
│ │ ├── dogm_font_data_ISO10646_CZ.h
│ │ ├── dogm_font_data_ISO10646_Greek.h
│ │ ├── dogm_font_data_ISO10646_Kana.h
│ │ ├── dogm_font_data_ISO10646_SK.h
│ │ ├── dogm_font_data_Marlin_symbols.h
│ │ ├── drivers.h
│ │ ├── duration_t.h
│ │ ├── emergency_parser.cpp
│ │ ├── emergency_parser.h
│ │ ├── endstop_interrupts.h
│ │ ├── endstops.cpp
│ │ ├── endstops.h
│ │ ├── enum.h
│ │ ├── fastio_1280.h
│ │ ├── fastio_1281.h
│ │ ├── fastio_168.h
│ │ ├── fastio_644.h
│ │ ├── fastio_AT90USB.h
│ │ ├── fastio.h
│ │ ├── fwretract.cpp
│ │ ├── fwretract.h
│ │ ├── G26_Mesh_Validation_Tool.cpp
│ │ ├── HAL.h
│ │ ├── hex_print_routines.cpp
│ │ ├── hex_print_routines.h
│ │ ├── I2CPositionEncoder.cpp
│ │ ├── I2CPositionEncoder.h
│ │ ├── language_an.h
│ │ ├── language_bg.h
│ │ ├── language_ca.h
│ │ ├── language_cn.h
│ │ ├── language_cz.h
│ │ ├── language_cz_utf8.h
│ │ ├── language_da.h
│ │ ├── language_de.h
│ │ ├── language_el-gr.h
│ │ ├── language_el.h
│ │ ├── language_en.h
│ │ ├── language_es.h
│ │ ├── language_es_utf8.h
│ │ ├── language_eu.h
│ │ ├── language_fi.h
│ │ ├── language_fr.h
│ │ ├── language_fr_utf8.h
│ │ ├── language_gl.h
│ │ ├── language.h
│ │ ├── language_hr.h
│ │ ├── language_it.h
│ │ ├── language_kana.h
│ │ ├── language_kana_utf8.h
│ │ ├── language_nl.h
│ │ ├── language_pl-DOGM.h
│ │ ├── language_pl.h
│ │ ├── language_pl-HD44780.h
│ │ ├── language_pt-br.h
│ │ ├── language_pt-br_utf8.h
│ │ ├── language_pt.h
│ │ ├── language_pt_utf8.h
│ │ ├── language_ru.h
│ │ ├── language_sk_utf8.h
│ │ ├── language_test.h
│ │ ├── language_tr.h
│ │ ├── language_uk.h
│ │ ├── language_zh_CN.h
│ │ ├── language_zh_TW.h
│ │ ├── least_squares_fit.cpp
│ │ ├── least_squares_fit.h
│ │ ├── leds.cpp
│ │ ├── leds.h
│ │ ├── M100_Free_Mem_Chk.cpp
│ │ ├── macros.h
│ │ ├── malyanlcd.cpp
│ │ ├── MarlinConfig.h
│ │ ├── Marlin.h
│ │ ├── Marlin.ino
│ │ ├── Marlin.ino.mega.hex
│ │ ├── Marlin.ino.with_bootloader.mega.hex
│ │ ├── Marlin_main.cpp
│ │ ├── MarlinSerial.cpp
│ │ ├── MarlinSerial.h
│ │ ├── MarlinSPI.h
│ │ ├── Max7219_Debug_LEDs.cpp
│ │ ├── Max7219_Debug_LEDs.h
│ │ ├── mesh_bed_leveling.cpp
│ │ ├── mesh_bed_leveling.h
│ │ ├── neopixel.cpp
│ │ ├── neopixel.h
│ │ ├── nozzle.cpp
│ │ ├── nozzle.h
│ │ ├── parser.cpp
│ │ ├── parser.h
│ │ ├── pca9632.cpp
│ │ ├── pca9632.h
│ │ ├── pins_3DRAG.h
│ │ ├── pins_5DPRINT.h
│ │ ├── pins_ANET_10.h
│ │ ├── pins_AZTEEG_X1.h
│ │ ├── pins_AZTEEG_X3.h
│ │ ├── pins_AZTEEG_X3_PRO.h
│ │ ├── pins_BAM_DICE_DUE.h
│ │ ├── pins_BQ_ZUM_MEGA_3D.h
│ │ ├── pins_BRAINWAVE.h
│ │ ├── pins_BRAINWAVE_PRO.h
│ │ ├── pins_CHEAPTRONIC.h
│ │ ├── pins_CHEAPTRONICv2.h
│ │ ├── pins_CNCONTROLS_11.h
│ │ ├── pins_CNCONTROLS_12.h
│ │ ├── pinsDebug.h
│ │ ├── pinsDebug_list.h
│ │ ├── pinsDebug_plus_70.h
│ │ ├── pinsDebug_Teensyduino.h
│ │ ├── pins_EINSY_RAMBO.h
│ │ ├── pins_EINSY_RETRO.h
│ │ ├── pins_ELEFU_3.h
│ │ ├── pins_FELIX2.h
│ │ ├── pins_GEN3_MONOLITHIC.h
│ │ ├── pins_GEN3_PLUS.h
│ │ ├── pins_GEN6_DELUXE.h
│ │ ├── pins_GEN6.h
│ │ ├── pins_GEN7_12.h
│ │ ├── pins_GEN7_13.h
│ │ ├── pins_GEN7_14.h
│ │ ├── pins_GEN7_CUSTOM.h
│ │ ├── pins_GT2560_REV_A.h
│ │ ├── pins_GT2560_REV_A_PLUS.h
│ │ ├── pins.h
│ │ ├── pins_K8200.h
│ │ ├── pins_K8400.h
│ │ ├── pins_LEAPFROG.h
│ │ ├── pins_MAKEBOARD_MINI.h
│ │ ├── pins_MEGACONTROLLER.h
│ │ ├── pins_MEGATRONICS_2.h
│ │ ├── pins_MEGATRONICS_3.h
│ │ ├── pins_MEGATRONICS.h
│ │ ├── pins_MELZI_CREALITY.h
│ │ ├── pins_MELZI.h
│ │ ├── pins_MELZI_MAKR3D.h
│ │ ├── pins_MELZI_MALYAN.h
│ │ ├── pins_MELZI_TRONXY.h
│ │ ├── pins_MIGHTYBOARD_REVE.h
│ │ ├── pins_MINIRAMBO.h
│ │ ├── pins_MINITRONICS.h
│ │ ├── pins_MKS_BASE_15.h
│ │ ├── pins_MKS_BASE.h
│ │ ├── pins_MKS_BASE_HEROIC.h
│ │ ├── pins_MKS_GEN_13.h
│ │ ├── pins_MKS_GEN_L.h
│ │ ├── pins_OMCA_A.h
│ │ ├── pins_OMCA.h
│ │ ├── pins_PRINTRBOARD.h
│ │ ├── pins_PRINTRBOARD_REVF.h
│ │ ├── pins_RAMBO.h
│ │ ├── pins_RAMPS_13.h
│ │ ├── pins_RAMPS_ENDER_4.h
│ │ ├── pins_RAMPS_FLY.h
│ │ ├── pins_RAMPS.h
│ │ ├── pins_RAMPS_OLD.h
│ │ ├── pins_RAMPS_PLUS.h
│ │ ├── pins_RIGIDBOARD.h
│ │ ├── pins_RIGIDBOARD_V2.h
│ │ ├── pins_RUMBA.h
│ │ ├── pins_SAINSMART_2IN1.h
│ │ ├── pins_SANGUINOLOLU_11.h
│ │ ├── pins_SANGUINOLOLU_12.h
│ │ ├── pins_SAV_MKI.h
│ │ ├── pins_SCOOVO_X9H.h
│ │ ├── pins_SETHI.h
│ │ ├── pins_SILVER_GATE.h
│ │ ├── pins_STB_11.h
│ │ ├── pins_TEENSY2.h
│ │ ├── pins_TEENSYLU.h
│ │ ├── pins_TRIGORILLA_13.h
│ │ ├── pins_TRIGORILLA_14.h
│ │ ├── pins_ULTIMAIN_2.h
│ │ ├── pins_ULTIMAKER.h
│ │ ├── pins_ULTIMAKER_OLD.h
│ │ ├── pins_ZRIB_V20.h
│ │ ├── planner_bezier.cpp
│ │ ├── planner_bezier.h
│ │ ├── planner.cpp
│ │ ├── planner.h
│ │ ├── point_t.h
│ │ ├── power.cpp
│ │ ├── power.h
│ │ ├── power_loss_recovery.cpp
│ │ ├── power_loss_recovery.h
│ │ ├── printcounter.cpp
│ │ ├── printcounter.h
│ │ ├── runout.cpp
│ │ ├── runout.h
│ │ ├── SanityCheck.h
│ │ ├── Sd2Card.cpp
│ │ ├── Sd2Card.h
│ │ ├── SdBaseFile.cpp
│ │ ├── SdBaseFile.h
│ │ ├── SdFatConfig.h
│ │ ├── SdFatStructs.h
│ │ ├── SdFatUtil.cpp
│ │ ├── SdFatUtil.h
│ │ ├── SdFile.cpp
│ │ ├── SdFile.h
│ │ ├── SdInfo.h
│ │ ├── SdVolume.cpp
│ │ ├── SdVolume.h
│ │ ├── serial.cpp
│ │ ├── serial.h
│ │ ├── servo.cpp
│ │ ├── servo.h
│ │ ├── softspi.h
│ │ ├── speed_lookuptable.h
│ │ ├── status_screen_DOGM.h
│ │ ├── status_screen_lite_ST7920_class.h
│ │ ├── status_screen_lite_ST7920.h
│ │ ├── status_screen_lite_ST7920_spi.h
│ │ ├── stepper.cpp
│ │ ├── stepper_dac.cpp
│ │ ├── stepper_dac.h
│ │ ├── stepper.h
│ │ ├── stepper_indirection.cpp
│ │ ├── stepper_indirection.h
│ │ ├── stopwatch.cpp
│ │ ├── stopwatch.h
│ │ ├── temperature.cpp
│ │ ├── temperature.h
│ │ ├── thermistornames.h
│ │ ├── thermistortable_1010.h
│ │ ├── thermistortable_1047.h
│ │ ├── thermistortable_10.h
│ │ ├── thermistortable_110.h
│ │ ├── thermistortable_11.h
│ │ ├── thermistortable_12.h
│ │ ├── thermistortable_13.h
│ │ ├── thermistortable_147.h
│ │ ├── thermistortable_15.h
│ │ ├── thermistortable_1.h
│ │ ├── thermistortable_20.h
│ │ ├── thermistortable_2.h
│ │ ├── thermistortable_3.h
│ │ ├── thermistortable_4.h
│ │ ├── thermistortable_501.h
│ │ ├── thermistortable_51.h
│ │ ├── thermistortable_52.h
│ │ ├── thermistortable_55.h
│ │ ├── thermistortable_5.h
│ │ ├── thermistortable_60.h
│ │ ├── thermistortable_66.h
│ │ ├── thermistortable_6.h
│ │ ├── thermistortable_70.h
│ │ ├── thermistortable_71.h
│ │ ├── thermistortable_75.h
│ │ ├── thermistortable_7.h
│ │ ├── thermistortable_8.h
│ │ ├── thermistortable_998.h
│ │ ├── thermistortable_999.h
│ │ ├── thermistortable_9.h
│ │ ├── thermistortables.h
│ │ ├── tmc_util.cpp
│ │ ├── tmc_util.h
│ │ ├── twibus.cpp
│ │ ├── twibus.h
│ │ ├── types.h
│ │ ├── ubl.cpp
│ │ ├── ubl_G29.cpp
│ │ ├── ubl.h
│ │ ├── ubl_motion.cpp
│ │ ├── ultralcd.cpp
│ │ ├── ultralcd.h
│ │ ├── ultralcd_impl_DOGM.h
│ │ ├── ultralcd_impl_HD44780.h
│ │ ├── ultralcd_st7565_u8glib_VIKI.h
│ │ ├── ultralcd_st7920_u8glib_rrd.h
│ │ ├── utf_mapper.h
│ │ ├── utility.cpp
│ │ ├── utility.h
│ │ ├── vector_3.cpp
│ │ ├── vector_3.h
│ │ ├── Version.h
│ │ ├── watchdog.cpp
│ │ └── watchdog.h
│ ├── platformio.ini
│ ├── process-palette.json
│ └── README.md
└── 普通屏幕必读.txt
38 directories, 527 files
标签:
相关软件
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)