update to version 1.3

see version history
This commit is contained in:
cocktailyogi
2015-03-27 16:38:37 +01:00
parent 77f9c1dbdf
commit d8cc9bdccd
5 changed files with 81 additions and 22 deletions

View File

@@ -24,17 +24,17 @@ Thanks to my wife and my daughter for their patience. :-)
#include <Servo.h>
#include "SerialCommand.h" //nice lib from Stefan Rado, https://github.com/kroimon/Arduino-SerialCommand
#define initSting "EBBv13_and_above Protocol emulated by Eggduino-Firmware V1.2"
#define initSting "EBBv13_and_above Protocol emulated by Eggduino-Firmware V1.3"
//Rotational Stepper
#define step1 11
#define dir1 10
#define enableRotMotor 9
#define rotMicrostep 8 //only 1,2,4,8,16 allowed, because of Integer-Math in this Sketch
#define rotMicrostep 16 //MicrostepMode, only 1,2,4,8,16 allowed, because of Integer-Math in this Sketch
//Pen Stepper
#define step2 8
#define dir2 7
#define enablePenMotor 6
#define penMicrostep 8 //only 1,2,4,8,16 allowed, because of Integer-Math in this Sketch
#define penMicrostep 16 //MicrostepMode, only 1,2,4,8,16 allowed, because of Integer-Math in this Sketch
//Servo
#define servoPin 3