Update and fix CHDK
This commit is contained in:
parent
fed84f2961
commit
498dfa291e
63 changed files with 548 additions and 137 deletions
|
@ -562,12 +562,9 @@
|
|||
//=============================Additional Features===========================
|
||||
//===========================================================================
|
||||
|
||||
#define ENCODER_RATE_MULTIPLIER // If defined, certain menu edit operations automatically multiply the steps when the encoder is moved quickly
|
||||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
#define ENCODER_RATE_MULTIPLIER // If defined, certain menu edit operations automatically multiply the steps when the encoder is moved quickly
|
||||
#define ENCODER_10X_STEPS_PER_SEC 30 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 80 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1498,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -191,9 +191,9 @@ volatile bool wait_for_heatup = true;
|
|||
millis_t max_inactive_time, // = 0
|
||||
stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
|
||||
|
||||
#ifdef CHDK
|
||||
millis_t chdkHigh; // = 0;
|
||||
bool chdkActive; // = false;
|
||||
#if PIN_EXISTS(CHDK)
|
||||
extern bool chdk_active;
|
||||
extern millis_t chdk_timeout;
|
||||
#endif
|
||||
|
||||
#if ENABLED(I2C_POSITION_ENCODERS)
|
||||
|
@ -323,7 +323,7 @@ void disable_all_steppers() {
|
|||
* - Keep the command buffer full
|
||||
* - Check for maximum inactive time between commands
|
||||
* - Check for maximum inactive time between stepper commands
|
||||
* - Check if pin CHDK needs to go LOW
|
||||
* - Check if CHDK_PIN needs to go LOW
|
||||
* - Check for KILL button held down
|
||||
* - Check for HOME button held down
|
||||
* - Check if cooling fan needs to be switched on
|
||||
|
@ -374,10 +374,10 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
|
||||
if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
|
||||
chdkActive = false;
|
||||
WRITE(CHDK, LOW);
|
||||
#if PIN_EXISTS(CHDK) // Check if pin should be set to LOW (after M240 set it HIGH)
|
||||
if (chdk_active && ELAPSED(ms, chdk_timeout)) {
|
||||
chdk_active = false;
|
||||
WRITE(CHDK_PIN, LOW);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1498,6 +1496,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -565,8 +565,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1496,6 +1494,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -538,8 +538,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1471,6 +1469,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -565,8 +565,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1496,6 +1494,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -574,8 +574,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 30 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 50 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1505,6 +1503,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -570,8 +570,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1501,6 +1499,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -571,8 +571,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1502,6 +1500,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1498,6 +1496,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 300 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -567,8 +567,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1505,6 +1503,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
//#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
//#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -579,8 +579,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1510,6 +1508,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -568,8 +568,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1499,6 +1497,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -566,8 +566,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1497,6 +1495,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -567,8 +567,6 @@
|
|||
#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
||||
#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
||||
|
||||
//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
||||
|
||||
// @section lcd
|
||||
|
||||
|
@ -1498,6 +1496,15 @@
|
|||
|
||||
// @section extras
|
||||
|
||||
/**
|
||||
* Canon Hack Development Kit
|
||||
* http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
||||
*/
|
||||
//#define CHDK_PIN 4 // Set and enable a pin for triggering CHDK to take a picture
|
||||
#if PIN_EXISTS(CHDK)
|
||||
#define CHDK_DELAY 50 // (ms) How long the pin should remain HIGH
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Spindle & Laser control
|
||||
*
|
||||
|
|
|
@ -22,20 +22,24 @@
|
|||
|
||||
#include "../../../inc/MarlinConfig.h"
|
||||
|
||||
#if defined(CHDK) || HAS_PHOTOGRAPH
|
||||
#if PIN_EXISTS(CHDK) || HAS_PHOTOGRAPH
|
||||
|
||||
#include "../../gcode.h"
|
||||
|
||||
bool chdk_active; // = false
|
||||
millis_t chdk_timeout;
|
||||
|
||||
/**
|
||||
* M240: Trigger a camera by emulating a Canon RC-1
|
||||
* See http://www.doc-diy.net/photo/rc-1_hacked/
|
||||
*/
|
||||
void GcodeSuite::M240() {
|
||||
#ifdef CHDK
|
||||
|
||||
OUT_WRITE(CHDK, HIGH);
|
||||
chdkHigh = millis();
|
||||
chdkActive = true;
|
||||
#if PIN_EXISTS(CHDK)
|
||||
|
||||
OUT_WRITE(CHDK_PIN, HIGH);
|
||||
chdk_timeout = millis() + CHDK_DELAY;
|
||||
chdk_active = true;
|
||||
|
||||
#elif HAS_PHOTOGRAPH
|
||||
|
||||
|
@ -58,4 +62,4 @@ void GcodeSuite::M240() {
|
|||
#endif
|
||||
}
|
||||
|
||||
#endif // CHDK || HAS_PHOTOGRAPH
|
||||
#endif // CHDK_PIN || HAS_PHOTOGRAPH
|
||||
|
|
|
@ -522,7 +522,7 @@ void GcodeSuite::process_parsed_command(
|
|||
case 304: M304(); break; // M304: Set bed PID parameters
|
||||
#endif
|
||||
|
||||
#if defined(CHDK) || HAS_PHOTOGRAPH
|
||||
#if PIN_EXISTS(CHDK) || HAS_PHOTOGRAPH
|
||||
case 240: M240(); break; // M240: Trigger a camera by emulating a Canon RC-1 : http://www.doc-diy.net/photo/rc-1_hacked/
|
||||
#endif
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@
|
|||
* M220 - Set Feedrate Percentage: "M220 S<percent>" (i.e., "FR" on the LCD)
|
||||
* M221 - Set Flow Percentage: "M221 S<percent>"
|
||||
* M226 - Wait until a pin is in a given state: "M226 P<pin> S<state>"
|
||||
* M240 - Trigger a camera to take a photograph. (Requires CHDK or PHOTOGRAPH_PIN)
|
||||
* M240 - Trigger a camera to take a photograph. (Requires CHDK_PIN or PHOTOGRAPH_PIN)
|
||||
* M250 - Set LCD contrast: "M250 C<contrast>" (0-63). (Requires LCD support)
|
||||
* M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
|
||||
* M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
|
||||
|
@ -631,7 +631,7 @@ private:
|
|||
static void M221();
|
||||
static void M226();
|
||||
|
||||
#if defined(CHDK) || HAS_PHOTOGRAPH
|
||||
#if PIN_EXISTS(CHDK) || HAS_PHOTOGRAPH
|
||||
static void M240();
|
||||
#endif
|
||||
|
||||
|
|
|
@ -321,6 +321,8 @@
|
|||
#error "G0_FEEDRATE is now used to set the G0 feedrate. Please update your configuration."
|
||||
#elif defined(MBL_Z_STEP)
|
||||
#error "MBL_Z_STEP is now MESH_EDIT_Z_STEP. Please update your configuration."
|
||||
#elif defined(CHDK)
|
||||
#error "CHDK is now CHDK_PIN. Please update your Configuration_adv.h."
|
||||
#endif
|
||||
|
||||
#define BOARD_MKS_13 -47
|
||||
|
|
Reference in a new issue