Skip to content

Hueristic/BIBO2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 

Repository files navigation

About

This is a hub for things that I've found helpful when working with the BIBO Touch 2 3D Printer.


Links

  • BIBO 3D Printer Facebook Group
    • Facebook user group for BIBO 3D printer users
  • Makerbase: MKS SGEN_L V1
    • Official Github for the SGEN 32-bit Equivalent board. The standard board is the MKS GEN_L V1 which is Arduino based.
    • Though this is NOT the standard version of the board for BIBO, it does have a lot of useful information.
  • MKS Tool
    • Tool to help build custom firmware.

Marlin Firmware Settings (MKS GEN_L V1 - Standard Board)

  • Settings for build in Platformio.ini
    [ platformio]
    src_dir      = Marlin
    boards_dir   = buildroot/share/PlatformIO/boards
    default_envs = mega2560
    include_dir  = Marlin
    
  • Motherboard settings for Configuration.h
    #ifndef MOTHERBOARD
      #define  MOTHERBOARD BOARD_MKS_GEN_L   // BOARD_MKS_GEN_L 
    #endif
    

Marlin Firmware Builds (MKS SGEN_L V1 - 32-Bit Board)

  • Settings for build in Platformio.ini
    [ platformio]
    src_dir      = Marlin
    boards_dir   = buildroot/share/PlatformIO/boards
    default_envs = LPC1768
    include_dir  = Marlin
    
  • Motherboard settings for Configuration.h
    #ifndef MOTHERBOARD
      #define  MOTHERBOARD BOARD_MKS_SGEN_L   // BOARD_MKS_SGEN_L
    #endif
    

About

BIBO Touch 2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%