Add "home" as command character "I".

This commit is contained in:
Matt McWilliams 2023-10-10 21:16:49 -04:00
parent f707dedc91
commit c4456e458f
14 changed files with 21 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{
"version": "1.8.56",
"version": "1.8.57",
"ext_port": 1111,
"profiles": {
"mcopy": {
@ -189,7 +189,8 @@
"takeup_backward": "F",
"error": "E",
"camera_exposure": "G",
"state": "H"
"state": "H",
"home": "I"
}
}
}

2
app/package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{
"name": "mcopy-app",
"version": "1.8.56",
"version": "1.8.57",
"description": "GUI for the mcopy small gauge film optical printer platform",
"main": "main.js",
"scripts": {

View File

@ -1,5 +1,5 @@
{
"version": "1.8.56",
"version": "1.8.57",
"ext_port": 1111,
"profiles": {
"mcopy": {
@ -189,7 +189,8 @@
"takeup_backward": "F",
"error": "E",
"camera_exposure": "G",
"state": "H"
"state": "H",
"home": "I"
}
}
}

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

View File

@ -49,6 +49,7 @@ class McopySerial {
const char CONNECT = 'i';
const char DEBUG = 'd';
const char ERROR = 'E';
const char HOME = 'I';
const char LIGHT = 'l';
const char LIGHT_IDENTIFIER = 'o';
const char MCOPY_IDENTIFIER = 'm';

4
package-lock.json generated
View File

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

View File

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

View File

@ -1,5 +1,5 @@
{
"version": "1.8.56",
"version": "1.8.57",
"ext_port": 1111,
"profiles": {
"mcopy": {
@ -189,7 +189,8 @@
"takeup_backward": "F",
"error": "E",
"camera_exposure": "G",
"state": "H"
"state": "H",
"home": "I"
}
}
}