PhotoStepper/PhotoStepper/Scenerunner.h

47 lines
996 B
C
Raw Normal View History

2022-02-10 00:45:08 +01:00
#ifndef Scenerunner_h
#define Scenerunner_h
#include "Arduino.h"
2022-02-10 14:53:35 +01:00
#include <LiquidCrystal.h>
2022-02-10 15:06:36 +01:00
#include <BasicStepperDriver.h>
2022-02-10 00:45:08 +01:00
class Scenerunner {
public:
// configuration values
2022-02-10 18:16:49 +01:00
int tSettle = 1000;
int tFocus = 1000;
int tShutter = 1000;
2022-02-10 00:45:08 +01:00
bool bReturn = true;
bool bDarkenLcd = true;
// scene values
int nSteps = 10;
float distance = 0.5;
Scenerunner(LiquidCrystal *lcd, BasicStepperDriver *stepper, int pin_focus, int pin_shutter);
2022-02-10 18:16:49 +01:00
void start();
2022-02-10 00:45:08 +01:00
void nextAction();
private:
2022-02-10 14:53:35 +01:00
LiquidCrystal *_lcd;
2022-02-10 15:06:36 +01:00
BasicStepperDriver *_stepper;
int _pin_focus;
int _pin_shutter;
2022-02-10 18:16:49 +01:00
2022-02-10 20:44:01 +01:00
int step;
2022-02-10 18:16:49 +01:00
enum RunStep { RUN_OFF, RUN_SETTLE, RUN_FOCUS, RUN_SHUTTER, RUN_MOVE, RUN_RETURN };
2022-02-10 00:45:08 +01:00
RunStep runStep = RUN_OFF;
2022-02-10 18:16:49 +01:00
unsigned long int runStepStart;
2022-02-10 00:45:08 +01:00
2022-02-10 18:33:33 +01:00
void _runHandler_off();
void _runHandler_settle();
void _runHandler_focus();
void _runHandler_shutter();
void _runHandler_move();
void _runHandler_return();
2022-02-10 00:45:08 +01:00
};
#endif