New homing behavior. Ready to port back to original.
This commit is contained in:
parent
702fc4680d
commit
f707dedc91
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"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.55",
|
"version": "1.8.56",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -107,13 +107,26 @@ void home () {
|
||||||
uint16_t eighth = quarter / 2;
|
uint16_t eighth = quarter / 2;
|
||||||
uint16_t takeupPeak = 0;
|
uint16_t takeupPeak = 0;
|
||||||
uint16_t feedPeak = 0;
|
uint16_t feedPeak = 0;
|
||||||
uint16_t takeupOffset = 0;
|
int16_t takeupOffset = 0;
|
||||||
uint16_t feedOffset = 0;
|
int16_t feedOffset = 0;
|
||||||
long takeupReading = 0.0;
|
long takeupReading = 0.0;
|
||||||
long feedReading = 0.0;
|
long feedReading = 0.0;
|
||||||
|
|
||||||
Serial.println("home()");
|
Serial.println("home()");
|
||||||
|
|
||||||
|
takeupReading = analogReadAccurateAverage(TAKEUP_RECEIVER);
|
||||||
|
feedReading = analogReadAccurateAverage(FEED_RECEIVER);
|
||||||
|
|
||||||
|
if (takeupReading > 2) {
|
||||||
|
_takeup.move(-25);
|
||||||
|
_takeup.runToPosition();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (feedReading > 2) {
|
||||||
|
_feed.move(-25);
|
||||||
|
_feed.runToPosition();
|
||||||
|
}
|
||||||
|
|
||||||
delay(10);
|
delay(10);
|
||||||
|
|
||||||
for (uint16_t i = 0; i < steps; i++) {
|
for (uint16_t i = 0; i < steps; i++) {
|
||||||
|
@ -153,17 +166,13 @@ void home () {
|
||||||
Serial.println(feedOffset);
|
Serial.println(feedOffset);
|
||||||
|
|
||||||
if (takeupOffset > 0) {
|
if (takeupOffset > 0) {
|
||||||
for (uint16_t i = 0; i < takeupOffset; i++) {
|
_takeup.move(takeupOffset < steps/2 ? -takeupOffset : steps - takeupOffset);
|
||||||
_takeup.move(-1);
|
|
||||||
_takeup.runToPosition();
|
_takeup.runToPosition();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (feedOffset > 0) {
|
if (feedOffset > 0) {
|
||||||
for (uint16_t i = 0; i < feedOffset; i++) {
|
_feed.move(feedOffset < steps/2 ? -feedOffset : steps - feedOffset);
|
||||||
_feed.move(-1);
|
|
||||||
_feed.runToPosition();
|
_feed.runToPosition();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
for (uint16_t i = 0; i < eighth; i++) {
|
for (uint16_t i = 0; i < eighth; i++) {
|
||||||
_takeup.move(-1);
|
_takeup.move(-1);
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"arduino": "file:app/lib/arduino",
|
"arduino": "file:app/lib/arduino",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.55",
|
"version": "1.8.56",
|
||||||
"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.55",
|
"version": "1.8.56",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
Loading…
Reference in New Issue