Add more smoothing during homing step. Is running consistently but is ending with motor in wrong position each time. Very strange.
This commit is contained in:
parent
6e7c226c57
commit
99b63150ac
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"description": "GUI for the mcopy small gauge film optical printer platform",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
Hardware
|
||||
|
||||
Arduino Uno
|
||||
Arduino Mega
|
||||
Itead Dual Stepper Shield
|
||||
2x NEMA17 Stepper Motors
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ long analogReadAccurate (uint8_t pin) {
|
|||
}
|
||||
|
||||
long analogReadAccurateAverage (uint8_t pin) {
|
||||
uint8_t count = 3;
|
||||
uint8_t count = 5;
|
||||
double sum = 0.0;
|
||||
for (uint8_t i = 0; i < count; i++) {
|
||||
sum += analogReadAccurate(pin);
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mcopy",
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"arduino": "file:app/lib/arduino",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"description": "Small gauge film optical printer platform",
|
||||
"main": "build.js",
|
||||
"directories": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.53",
|
||||
"version": "1.8.54",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
Loading…
Reference in New Issue