This is a hub for things that I've found helpful when working with the BIBO Touch 2 3D Printer.
- 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.
- Official Github for the SGEN 32-bit Equivalent board. The standard board is the
- MKS Tool
- Tool to help build custom firmware.
- 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
- 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