Created the basics of the mitchell and oxberry firmwares. Mitchell still needs button logic but oxberry will be controlled entirely digitally.
This commit is contained in:
parent
29cd83eecf
commit
f594472fd2
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"description": "GUI for the mcopy small gauge film optical printer platform",
|
"description": "GUI for the mcopy small gauge film optical printer platform",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -129,7 +129,7 @@ uint32_t EndstopCameraShield::toOpen() {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t EndstopCameraShield::toClosed() {
|
uint32_t EndstopCameraShield::toClose() {
|
||||||
bool primed = false;
|
bool primed = false;
|
||||||
bool running = true;
|
bool running = true;
|
||||||
uint32_t i = 0;
|
uint32_t i = 0;
|
||||||
|
|
|
@ -59,7 +59,7 @@ class EndstopCameraShield {
|
||||||
void loop();
|
void loop();
|
||||||
uint32_t frame();
|
uint32_t frame();
|
||||||
uint32_t toOpen();
|
uint32_t toOpen();
|
||||||
uint32_t toClosed();
|
uint32_t toClose();
|
||||||
void setDirection(bool direction);
|
void setDirection(bool direction);
|
||||||
bool isOpened();
|
bool isOpened();
|
||||||
bool isClosed();
|
bool isClosed();
|
||||||
|
|
|
@ -129,7 +129,7 @@ uint32_t EndstopCameraShield::toOpen() {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t EndstopCameraShield::toClosed() {
|
uint32_t EndstopCameraShield::toClose() {
|
||||||
bool primed = false;
|
bool primed = false;
|
||||||
bool running = true;
|
bool running = true;
|
||||||
uint32_t i = 0;
|
uint32_t i = 0;
|
||||||
|
|
|
@ -59,7 +59,7 @@ class EndstopCameraShield {
|
||||||
void loop();
|
void loop();
|
||||||
uint32_t frame();
|
uint32_t frame();
|
||||||
uint32_t toOpen();
|
uint32_t toOpen();
|
||||||
uint32_t toClosed();
|
uint32_t toClose();
|
||||||
void setDirection(bool direction);
|
void setDirection(bool direction);
|
||||||
bool isOpened();
|
bool isOpened();
|
||||||
bool isClosed();
|
bool isClosed();
|
||||||
|
|
|
@ -0,0 +1,159 @@
|
||||||
|
#include "EndstopCameraShield.h"
|
||||||
|
#include "McopySerial.h"
|
||||||
|
|
||||||
|
const bool DEBUG = false;
|
||||||
|
|
||||||
|
//const uint8_t enableButtonPin = 9; //enable feature
|
||||||
|
const uint8_t directionSwitchPin = 10;
|
||||||
|
const uint8_t cameraButtonPin = 11;
|
||||||
|
const uint8_t openCloseSwitchPin = 12;
|
||||||
|
const uint8_t LEDPin = 13;
|
||||||
|
|
||||||
|
const uint32_t usPulse = 300;
|
||||||
|
const uint8_t microsteps = 2;
|
||||||
|
volatile char cmdChar = 'z';
|
||||||
|
volatile long now;
|
||||||
|
|
||||||
|
volatile long exposureAvg = -1; //pre-fill
|
||||||
|
volatile String exposureString;
|
||||||
|
volatile long exposureTarget = -1;
|
||||||
|
|
||||||
|
volatile bool direction = true;
|
||||||
|
|
||||||
|
volatile bool directionSwitch = true;
|
||||||
|
|
||||||
|
EndstopCameraShield cam(usPulse, microsteps);
|
||||||
|
McopySerial mc;
|
||||||
|
|
||||||
|
void setup () {
|
||||||
|
pinMode(directionSwitchPin, INPUT_PULLUP);
|
||||||
|
pinMode(openCloseSwitchPin, INPUT_PULLUP);
|
||||||
|
pinMode(cameraButtonPin, INPUT_PULLUP);
|
||||||
|
|
||||||
|
mc.begin(mc.CAMERA_IDENTIFIER);
|
||||||
|
mc.debug(DEBUG);
|
||||||
|
cam.setup();
|
||||||
|
|
||||||
|
if (cam.isOpened()) {
|
||||||
|
mc.log("Camera is OPENED");
|
||||||
|
} else if (cam.isClosed()) {
|
||||||
|
mc.log("Camera is CLOSED");
|
||||||
|
} else {
|
||||||
|
mc.log("Camera is in UNKNOWN state");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop () {
|
||||||
|
now = millis();
|
||||||
|
cmdChar = mc.loop();
|
||||||
|
cmd(cmdChar);
|
||||||
|
cam.loop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void cmd (char val) {
|
||||||
|
if (val == mc.CAMERA_FORWARD) {
|
||||||
|
camera_direction(true);
|
||||||
|
} else if (val == mc.CAMERA_BACKWARD) {
|
||||||
|
camera_direction(false);
|
||||||
|
} else if (val == mc.CAMERA) {
|
||||||
|
camera();
|
||||||
|
} else if (val == mc.CAMERA_OPEN) {
|
||||||
|
camera_open();
|
||||||
|
} else if (val == mc.CAMERA_CLOSE) {
|
||||||
|
camera_close();
|
||||||
|
} else if (val == mc.CAMERA_EXPOSURE) {
|
||||||
|
exposure();
|
||||||
|
} else if (val == mc.STATE) {
|
||||||
|
state();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void exposure () {
|
||||||
|
exposureString = mc.getString();
|
||||||
|
parseExposureString();
|
||||||
|
exposureAvg = exposureTarget;
|
||||||
|
mc.confirm(mc.CAMERA_EXPOSURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void parseExposureString () {
|
||||||
|
exposureTarget = exposureString.toInt();
|
||||||
|
}
|
||||||
|
|
||||||
|
void camera_direction (boolean state) {
|
||||||
|
direction = state;
|
||||||
|
cam.setDirection(direction);
|
||||||
|
if (state) {
|
||||||
|
mc.confirm(mc.CAMERA_FORWARD);
|
||||||
|
mc.log("camera_direction(true)");
|
||||||
|
} else {
|
||||||
|
mc.confirm(mc.CAMERA_BACKWARD);
|
||||||
|
mc.log("camera_direction(false)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void camera () {
|
||||||
|
long start = millis();
|
||||||
|
long half;
|
||||||
|
long pause;
|
||||||
|
long ms;
|
||||||
|
|
||||||
|
if (exposureTarget > -1) {
|
||||||
|
half = exposureAvg / 2; //assume a 180 shutter
|
||||||
|
pause = exposureTarget - half;
|
||||||
|
if (pause < exposureAvg) {
|
||||||
|
cam.frame();
|
||||||
|
} else {
|
||||||
|
cam.toOpen();
|
||||||
|
delay(pause);
|
||||||
|
cam.toClose();
|
||||||
|
}
|
||||||
|
} else{
|
||||||
|
cam.frame();
|
||||||
|
}
|
||||||
|
ms = millis() - start;
|
||||||
|
if (exposureTarget < 0) {
|
||||||
|
updateAvg(ms);
|
||||||
|
}
|
||||||
|
mc.log("camera()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
|
mc.confirm(mc.CAMERA);
|
||||||
|
}
|
||||||
|
|
||||||
|
void camera_open () {
|
||||||
|
long start = millis();
|
||||||
|
long ms;
|
||||||
|
cam.toOpen();
|
||||||
|
ms = millis() - start;
|
||||||
|
mc.log("camera_open()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
|
mc.confirm(mc.CAMERA_OPEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
void camera_close () {
|
||||||
|
long start = millis();
|
||||||
|
long ms;
|
||||||
|
cam.toClose();
|
||||||
|
ms = millis() - start;
|
||||||
|
mc.log("camera_close()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
|
mc.confirm(mc.CAMERA_CLOSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void state () {
|
||||||
|
String stateString = String(mc.STATE);
|
||||||
|
stateString += String(mc.CAMERA_EXPOSURE);
|
||||||
|
if (exposureTarget > -1) {
|
||||||
|
stateString += String(exposureTarget);
|
||||||
|
} else {
|
||||||
|
stateString += String(exposureAvg);
|
||||||
|
}
|
||||||
|
stateString += String(mc.STATE);
|
||||||
|
mc.sendString(stateString);
|
||||||
|
}
|
||||||
|
|
||||||
|
void updateAvg (long value) {
|
||||||
|
exposureAvg = round((exposureAvg + value) / 2);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Button logic
|
||||||
|
**/
|
|
@ -1,10 +0,0 @@
|
||||||
#include "EndstopCameraShield.h"
|
|
||||||
#include "McopySerial.h"
|
|
||||||
|
|
||||||
void setup () {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop () {
|
|
||||||
|
|
||||||
}
|
|
|
@ -129,7 +129,7 @@ uint32_t EndstopCameraShield::toOpen() {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t EndstopCameraShield::toClosed() {
|
uint32_t EndstopCameraShield::toClose() {
|
||||||
bool primed = false;
|
bool primed = false;
|
||||||
bool running = true;
|
bool running = true;
|
||||||
uint32_t i = 0;
|
uint32_t i = 0;
|
||||||
|
|
|
@ -59,7 +59,7 @@ class EndstopCameraShield {
|
||||||
void loop();
|
void loop();
|
||||||
uint32_t frame();
|
uint32_t frame();
|
||||||
uint32_t toOpen();
|
uint32_t toOpen();
|
||||||
uint32_t toClosed();
|
uint32_t toClose();
|
||||||
void setDirection(bool direction);
|
void setDirection(bool direction);
|
||||||
bool isOpened();
|
bool isOpened();
|
||||||
bool isClosed();
|
bool isClosed();
|
||||||
|
|
|
@ -2,11 +2,6 @@
|
||||||
#include "McopySerial.h"
|
#include "McopySerial.h"
|
||||||
|
|
||||||
const bool DEBUG = false;
|
const bool DEBUG = false;
|
||||||
|
|
||||||
const uint8_t enableButtonPin = 9;
|
|
||||||
const uint8_t enableButtonPin = 10;
|
|
||||||
const uint8_t enableButtonPin = 11;
|
|
||||||
const uint8_t enableButtonPin = 12;
|
|
||||||
const uint8_t LEDPin = 13;
|
const uint8_t LEDPin = 13;
|
||||||
|
|
||||||
const uint32_t usPulse = 300;
|
const uint32_t usPulse = 300;
|
||||||
|
@ -19,7 +14,6 @@ volatile String exposureString;
|
||||||
volatile long exposureTarget = -1;
|
volatile long exposureTarget = -1;
|
||||||
|
|
||||||
volatile bool direction = true;
|
volatile bool direction = true;
|
||||||
volatile bool directionSwitch = true;
|
|
||||||
|
|
||||||
EndstopCameraShield cam(usPulse, microsteps);
|
EndstopCameraShield cam(usPulse, microsteps);
|
||||||
McopySerial mc;
|
McopySerial mc;
|
||||||
|
@ -29,9 +23,13 @@ void setup () {
|
||||||
mc.debug(DEBUG);
|
mc.debug(DEBUG);
|
||||||
cam.setup();
|
cam.setup();
|
||||||
if (cam.isOpened()) {
|
if (cam.isOpened()) {
|
||||||
mc.log("Camera is OPENED");
|
mc.log("Camera is OPENED, closing...");
|
||||||
|
cam.toClose();
|
||||||
} else if (cam.isClosed()) {
|
} else if (cam.isClosed()) {
|
||||||
mc.log("Camera is CLOSED");
|
mc.log("Camera is CLOSED");
|
||||||
|
} else {
|
||||||
|
mc.log("Camera is in UNKNOWN state, closing...");
|
||||||
|
cam.toClose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,6 +47,10 @@ void cmd (char val) {
|
||||||
camera_direction(false);
|
camera_direction(false);
|
||||||
} else if (val == mc.CAMERA) {
|
} else if (val == mc.CAMERA) {
|
||||||
camera();
|
camera();
|
||||||
|
} else if (val == mc.CAMERA_OPEN) {
|
||||||
|
camera_open();
|
||||||
|
} else if (val == mc.CAMERA_CLOSE) {
|
||||||
|
camera_close();
|
||||||
} else if (val == mc.CAMERA_EXPOSURE) {
|
} else if (val == mc.CAMERA_EXPOSURE) {
|
||||||
exposure();
|
exposure();
|
||||||
} else if (val == mc.STATE) {
|
} else if (val == mc.STATE) {
|
||||||
|
@ -59,7 +61,7 @@ void cmd (char val) {
|
||||||
void exposure () {
|
void exposure () {
|
||||||
exposureString = mc.getString();
|
exposureString = mc.getString();
|
||||||
parseExposureString();
|
parseExposureString();
|
||||||
cameraFrame = exposureTarget;
|
exposureAvg = exposureTarget;
|
||||||
mc.confirm(mc.CAMERA_EXPOSURE);
|
mc.confirm(mc.CAMERA_EXPOSURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +82,11 @@ void camera_direction (boolean state) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void camera () {
|
void camera () {
|
||||||
long start, half, pause;
|
long start = millis();
|
||||||
|
long half;
|
||||||
|
long pause;
|
||||||
|
long ms;
|
||||||
|
|
||||||
if (exposureTarget > -1) {
|
if (exposureTarget > -1) {
|
||||||
half = exposureAvg / 2; //assume a 180 shutter
|
half = exposureAvg / 2; //assume a 180 shutter
|
||||||
pause = exposureTarget - half;
|
pause = exposureTarget - half;
|
||||||
|
@ -91,15 +97,38 @@ void camera () {
|
||||||
delay(pause);
|
delay(pause);
|
||||||
cam.toClose();
|
cam.toClose();
|
||||||
}
|
}
|
||||||
|
|
||||||
} else{
|
} else{
|
||||||
millis();
|
|
||||||
cam.frame();
|
cam.frame();
|
||||||
updateAvg(millis() - start);
|
|
||||||
}
|
}
|
||||||
|
ms = millis() - start;
|
||||||
|
if (exposureTarget < 0) {
|
||||||
|
updateAvg(ms);
|
||||||
|
}
|
||||||
|
mc.log("camera()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
mc.confirm(mc.CAMERA);
|
mc.confirm(mc.CAMERA);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void camera_open () {
|
||||||
|
long start = millis();
|
||||||
|
long ms;
|
||||||
|
cam.toOpen();
|
||||||
|
ms = millis() - start;
|
||||||
|
mc.log("camera_open()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
|
mc.confirm(mc.CAMERA_OPEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
void camera_close () {
|
||||||
|
long start = millis();
|
||||||
|
long ms;
|
||||||
|
cam.toClose();
|
||||||
|
ms = millis() - start;
|
||||||
|
mc.log("camera_close()");
|
||||||
|
mc.log(String(ms) + "ms");
|
||||||
|
mc.confirm(mc.CAMERA_CLOSE);
|
||||||
|
}
|
||||||
|
|
||||||
void state () {
|
void state () {
|
||||||
String stateString = String(mc.STATE);
|
String stateString = String(mc.STATE);
|
||||||
stateString += String(mc.CAMERA_EXPOSURE);
|
stateString += String(mc.CAMERA_EXPOSURE);
|
||||||
|
@ -114,8 +143,4 @@ void state () {
|
||||||
|
|
||||||
void updateAvg (long value) {
|
void updateAvg (long value) {
|
||||||
exposureAvg = round((exposureAvg + value) / 2);
|
exposureAvg = round((exposureAvg + value) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Button logic
|
|
||||||
**/
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"alert": "file:app/lib/alert",
|
"alert": "file:app/lib/alert",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"description": "Small gauge film optical printer platform",
|
"description": "Small gauge film optical printer platform",
|
||||||
"main": "build.js",
|
"main": "build.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.122",
|
"version": "1.8.123",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
Loading…
Reference in New Issue