Show Posts
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
AstroEQ Availability / Re: Handcontroller Availability
« on: June 13, 2017, 13:52:22 »
Hi Tom, What is the cost of the hand controller ?
regards
Les
regards
Les
2
AstroEQ Availability / Re: AstroEQ Availability [Currently Unavailable]
« on: June 13, 2017, 13:50:33 »
Hi Tom,
I am interested in buying one of your AstroEQ units and cables, can you please email me with a total cost and how I go about buying one as they do not seem to be showing up on the Buy page. I am located on Long Island in the US.
regards
Les
I am interested in buying one of your AstroEQ units and cables, can you please email me with a total cost and how I go about buying one as they do not seem to be showing up on the Buy page. I am located on Long Island in the US.
regards
Les
3
DIY AstroEQ / Re: Help Needed with New Build
« on: February 25, 2017, 01:21:42 »
Hi Tom,
Thanks for the very quick reply, nice to see somebody supporting there software.
I have a pair of Nema 17 0.9 motor in the cabinet so I will look at implementing them this week and I will also look at sourcing some over gears.
Grateful for the assistance as I really like EQMOD and you software has made it possible for me to use it.
regards
Les
Thanks for the very quick reply, nice to see somebody supporting there software.
I have a pair of Nema 17 0.9 motor in the cabinet so I will look at implementing them this week and I will also look at sourcing some over gears.
Grateful for the assistance as I really like EQMOD and you software has made it possible for me to use it.
regards
Les
4
DIY AstroEQ / Help Needed with New Build
« on: February 24, 2017, 22:11:45 »
Hi,
I have been building an Astroeq based around an Arduino Mega 2560 but seem to be having some problems.
Setup
Bresser EXOS2 mount (next Revison Of the LXD75)
1.8 Deg Steppers with 2X1 belts on both axis
Motor Driver IC Type - A4988/3
Motor Microstep Level 16uSteps
Right Ascension Axis
Motor Step Angle - 1.8
Motor Gear Ratio - 2
Worm Gear Ration - 144
Goto Rate - 528
Reverse Axis Direction - ON
Declination Axis
Motor Step Angle - 1.8
Motor Gear Ratio - 2
Worm Gear Ration - 144
Goto Rate - 528
Reverse Axis Direction - ON
Calculated RA Settings
Axis Steps/rev 921600
Worm Steps/rev 6400
Sidereal Steps/s 6364
Sidereal Speed 595
Resolution 1.406
Calculated Dec Settings
Axis Steps/rev 921600
Worm Steps/rev 6400
Sidereal Steps/s 6364
Sidereal Speed 595
Resolution 1.406
(1) The mount seems to slew quite accurately, infact more accurate that my Meade 497 with the first couple of stars.
(2) works very well after it has a couple of sync point created with AstroTortilla
(3) For Visual work it would work fine but mostly I would like to concentrate on photography
(3) Tracking seems very strange the image seems to bounce back and forth, maybe 1-3 pixels and this blurs the image. In Stellarium the scope marker move back and forth by 1-2 Arc Seconds.
(4) I cannot get PHP2 to settle down and it seems to be overcompensating no matter what the setting are.
While compiling I noticed the following warnings (is this OK)
_____________________________________________
sketch\AstroEQ.cpp: In function 'int main()':
sketch\AstroEQ.cpp:546:55: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
Serial_writeStr(SPI_WELCOME_STRING); //Send version number
^
sketch\synta.cpp: In function 'void synta_assembleResponse(char*, char, long unsigned int)':
sketch\synta.cpp:49:45: warning: narrowing conversion of 'responseData' from 'long unsigned int' to 'byte {aka unsigned char}' inside { } [-Wnarrowing]
Nibbler nibble = { responseData };
^
sketch\synta.cpp:52:51: warning: narrowing conversion of 'responseData' from 'long unsigned int' to 'unsigned int' inside { } [-Wnarrowing]
DoubleNibbler nibble = { responseData };
^
sketch\synta.cpp: In function 'byte hexToByte(char*)':
sketch\synta.cpp:136:41: warning: narrowing conversion of '(((int)hexToNibbler((* hex))) << 4)' from 'int' to 'byte {aka unsigned char}' inside { } [-Wnarrowing]
Nibbler high = {hexToNibbler(hex[0])<<4};
^
Sketch uses 10152 bytes (3%) of program storage space. Maximum is 253952 bytes.
Global variables use 846 bytes (10%) of dynamic memory, leaving 7346 bytes for local variables. Maximum is 8192 bytes.
____________________________________________
I also used some test software to test the delays on the Arduino and got the following results
delayMicroseconds(20) : 18.900 us
delayMicroseconds(80) : 79.250 us
delayMicroseconds(90) : 89.300 us
delayMicroseconds(100) : 99.400 us
I also wrote some test software to test the microstepping which seems to show that the A4988's are stepping OK.
I'm not sure if the problem is with the Arduino timing or with my build.
any help on how to track down the problems would be appreciated.
Les
I have been building an Astroeq based around an Arduino Mega 2560 but seem to be having some problems.
Setup
Bresser EXOS2 mount (next Revison Of the LXD75)
1.8 Deg Steppers with 2X1 belts on both axis
Motor Driver IC Type - A4988/3
Motor Microstep Level 16uSteps
Right Ascension Axis
Motor Step Angle - 1.8
Motor Gear Ratio - 2
Worm Gear Ration - 144
Goto Rate - 528
Reverse Axis Direction - ON
Declination Axis
Motor Step Angle - 1.8
Motor Gear Ratio - 2
Worm Gear Ration - 144
Goto Rate - 528
Reverse Axis Direction - ON
Calculated RA Settings
Axis Steps/rev 921600
Worm Steps/rev 6400
Sidereal Steps/s 6364
Sidereal Speed 595
Resolution 1.406
Calculated Dec Settings
Axis Steps/rev 921600
Worm Steps/rev 6400
Sidereal Steps/s 6364
Sidereal Speed 595
Resolution 1.406
(1) The mount seems to slew quite accurately, infact more accurate that my Meade 497 with the first couple of stars.
(2) works very well after it has a couple of sync point created with AstroTortilla
(3) For Visual work it would work fine but mostly I would like to concentrate on photography
(3) Tracking seems very strange the image seems to bounce back and forth, maybe 1-3 pixels and this blurs the image. In Stellarium the scope marker move back and forth by 1-2 Arc Seconds.
(4) I cannot get PHP2 to settle down and it seems to be overcompensating no matter what the setting are.
While compiling I noticed the following warnings (is this OK)
_____________________________________________
sketch\AstroEQ.cpp: In function 'int main()':
sketch\AstroEQ.cpp:546:55: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
Serial_writeStr(SPI_WELCOME_STRING); //Send version number
^
sketch\synta.cpp: In function 'void synta_assembleResponse(char*, char, long unsigned int)':
sketch\synta.cpp:49:45: warning: narrowing conversion of 'responseData' from 'long unsigned int' to 'byte {aka unsigned char}' inside { } [-Wnarrowing]
Nibbler nibble = { responseData };
^
sketch\synta.cpp:52:51: warning: narrowing conversion of 'responseData' from 'long unsigned int' to 'unsigned int' inside { } [-Wnarrowing]
DoubleNibbler nibble = { responseData };
^
sketch\synta.cpp: In function 'byte hexToByte(char*)':
sketch\synta.cpp:136:41: warning: narrowing conversion of '(((int)hexToNibbler((* hex))) << 4)' from 'int' to 'byte {aka unsigned char}' inside { } [-Wnarrowing]
Nibbler high = {hexToNibbler(hex[0])<<4};
^
Sketch uses 10152 bytes (3%) of program storage space. Maximum is 253952 bytes.
Global variables use 846 bytes (10%) of dynamic memory, leaving 7346 bytes for local variables. Maximum is 8192 bytes.
____________________________________________
I also used some test software to test the delays on the Arduino and got the following results
delayMicroseconds(20) : 18.900 us
delayMicroseconds(80) : 79.250 us
delayMicroseconds(90) : 89.300 us
delayMicroseconds(100) : 99.400 us
I also wrote some test software to test the microstepping which seems to show that the A4988's are stepping OK.
I'm not sure if the problem is with the Arduino timing or with my build.
any help on how to track down the problems would be appreciated.
Les
5
AstroEQ Availability / Re: AstroEQ Availability [Currently Unavailable]
« on: February 24, 2017, 03:10:58 »
Hi Tom,
I am interested in buying a completed AstroEq and cables can you tell me if you currently have any available.
regards
Les
I am interested in buying a completed AstroEq and cables can you tell me if you currently have any available.
regards
Les
Pages: [1]