Compare commits

...

2 Commits

10 changed files with 23 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.58", "version": "1.8.60",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {

2
app/package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy-app", "name": "mcopy-app",
"version": "1.8.58", "version": "1.8.60",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {

View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy-app", "name": "mcopy-app",
"version": "1.8.58", "version": "1.8.60",
"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": {

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.58", "version": "1.8.60",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {
@ -190,7 +190,8 @@
"error": "E", "error": "E",
"camera_exposure": "G", "camera_exposure": "G",
"state": "H", "state": "H",
"home": "I" "home": "I",
"offset": "O"
} }
} }
} }

View File

@ -303,6 +303,16 @@ long McopyProjector::analogReadAccurateAverage (uint8_t &pin) {
return sum / (double) count; return sum / (double) count;
} }
long McopyProjector::analogReadAverage (uint8_t &pin) {
uint8_t count = 3;
double sum = 0.0;
for (uint8_t i = 0; i < count; i++) {
sum += analogRead(pin);
delay(1);
}
return sum / (double) count;
}
uint16_t McopyProjector::findPeak(long (&arr)[200], uint16_t &steps) { uint16_t McopyProjector::findPeak(long (&arr)[200], uint16_t &steps) {
uint16_t maxI = 0; uint16_t maxI = 0;
long max = 0; long max = 0;

View File

@ -69,6 +69,7 @@ class McopyProjector {
long readVcc(); long readVcc();
long analogReadAccurate (uint8_t &pin); long analogReadAccurate (uint8_t &pin);
long analogReadAccurateAverage (uint8_t &pin); long analogReadAccurateAverage (uint8_t &pin);
long analogReadAverage (uint8_t &pin);
uint16_t findPeak(long (&arr)[200], uint16_t &steps); uint16_t findPeak(long (&arr)[200], uint16_t &steps);
void emitters(bool enabled); void emitters(bool enabled);

View File

@ -78,8 +78,6 @@ void setup () {
delay(42); delay(42);
digitalWrite(LED_FWD, LOW); digitalWrite(LED_FWD, LOW);
digitalWrite(LED_BWD, LOW); digitalWrite(LED_BWD, LOW);
//projector.home();
} }
void loop () { void loop () {
@ -110,6 +108,8 @@ void cmd (char val) {
projector_frame(); projector_frame();
} else if (val == mcopy.STATE) { } else if (val == mcopy.STATE) {
state(); state();
} else if (val == mcopy.HOME) {
projector.home();
} }
} }

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "mcopy", "name": "mcopy",
"version": "1.8.58", "version": "1.8.60",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "mcopy", "name": "mcopy",
"version": "1.8.58", "version": "1.8.60",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"arduino": "file:app/lib/arduino", "arduino": "file:app/lib/arduino",

View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy", "name": "mcopy",
"version": "1.8.58", "version": "1.8.60",
"description": "Small gauge film optical printer platform", "description": "Small gauge film optical printer platform",
"main": "build.js", "main": "build.js",
"directories": { "directories": {

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.58", "version": "1.8.60",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {