9. CONFIGURATION OF THE SOFTWARE
Board selection
Before the software can be transmitted to the Arduino, the used
configuration must be adjusted. For the Ramps 1.4 board is the following
configuration intended:
#define BOARD_RAMPS_14_EFB 43
//RAMPS 1.4(Power outputs: Hotend,Fan,Bed)
#define BOARD_RAMPS_14_EEB 44
//RAMPS 1.4(Power outputs: Hotend0,Hotend1,Bed)
#define BOARD_RAMPS_14_EFF 45
//RAMPS 1.4(Power outputs: Hotend,Fan0,Fan1)
#define BOARD_RAMPS_14_EEF 46
//RAMPS 1.4(Power outputs: Hotend0,Hotend1,Fan)
#define BOARD_RAMPS_14_SF 48
//RAMPS 1.4(Power outputs: Spindle,Controller Fan)
The most common configuration consists of one HotEnd, one fan and
one bed. Depending to its purpose and structure the configuration can
be differed. In accordance with the configuartion the motherboard in the
Configuration.h
file must be registered.
Open the
Configuration.h
file and search for the corresponding definition
of the motherboard.
For the earlier mentioned configuration (HotEnd, fan, bed) should the
motherboard configuartion look like the following:
// The following define selects which electronics board you have
// Please choose the name from boards.h that matches your setup
#ifndef MOTHERBOARD
#define MOTHERBOARD BOARD_RAMPS_14_EFB
#endif