×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

Celestron Motorised Focuser - Is it supported in EKOS yet

  • Posts: 13
  • Thank you received: 2
Have you tried connecting the focuser to a windows PC, run the celestron calibration utility to retrain the focuser limits.

When you reconnect it to the Stellarmate, it will reread the settings from the focuser
5 years 1 month ago #36089

Please Log in or Create an account to join the conversation.

  • Posts: 554
  • Thank you received: 138
What I've found is that if you abort a calibration before it's finished the limits are set to 0, 0.
I'm going to check and not update the limits if they aren't sensible.
5 years 1 month ago #36091

Please Log in or Create an account to join the conversation.

  • Posts: 139
  • Thank you received: 31
Hi,
I'm about to order the Celestron Focuser for my SCT. Is an Usb port from a Raspi enough to power it up or do I need extra power ?
Thanks!

- Marc
5 years 1 month ago #36109

Please Log in or Create an account to join the conversation.

  • Posts: 554
  • Thank you received: 138
Don't know, my testing was done connected to a RasbPi through a powered hub.
5 years 1 month ago #36111

Please Log in or Create an account to join the conversation.

  • Posts: 30
  • Thank you received: 1
Chris. the in celestron_geps integrated focuser is reporting wrong max value (-23500) where the standalone does not.
Current gear:
- AVX
- E8HD + ASI294MC
- Celestron 150x30 + ASI224 for guiding
- Celestron Focuser for harp stars

SW:
- Linux NUC + Ubuntu + INDI nightly on the server
- Linux Ubuntu + KSTARS nightly on the client (via CAT5 wire)
5 years 1 month ago #36113

Please Log in or Create an account to join the conversation.

  • Posts: 554
  • Thank you received: 138
Not interested without log files.
5 years 1 month ago #36114

Please Log in or Create an account to join the conversation.

  • Posts: 30
  • Thank you received: 1
focuser of _gps

2019-03-07T19:04:47: [INFO] Focus Limits: Maximum (-23055) Minimum (1993) steps.
2019-03-07T19:04:47: [INFO] update focuser properties
2019-03-07T19:04:47: [INFO] Mount UTC offset is 1.00. UTC time is 2019-03-07T22:17:14
2019-03-07T19:04:47: [INFO] Mount is unparked.
2019-03-07T19:04:47: [INFO] InitPark: No Park data in file /home/hugo/.indi/ParkData.xml: No such file or directory
2019-03-07T19:04:46: [INFO] Mount model: AVX
2019-03-07T19:04:46: [INFO] Controller version: 5.30
2019-03-07T19:04:46: [INFO] Celestron GPS is online.

and standalone:
2019-03-07T19:04:47: [INFO] Device configuration applied.
2019-03-07T19:04:47: [INFO] Loading device configuration...
2019-03-07T19:04:46: [INFO] Celestron SCT focuser paramaters updated, focuser ready for use.
2019-03-07T19:04:46: [INFO] Focus Limits: Maximum (42737) Minimum (2249) steps.
2019-03-07T19:04:46: [INFO] Celestron SCT is online.
2019-03-07T19:04:46: [INFO] Celestron SCT Focuser is online. Getting focus parameters...
2019-03-07T19:04:46: [INFO] Firmware Version 7.15.8240

compare the max-limits
Current gear:
- AVX
- E8HD + ASI294MC
- Celestron 150x30 + ASI224 for guiding
- Celestron Focuser for harp stars

SW:
- Linux NUC + Ubuntu + INDI nightly on the server
- Linux Ubuntu + KSTARS nightly on the client (via CAT5 wire)
Last edit: 5 years 1 month ago by Stefan.
5 years 1 month ago #36115

Please Log in or Create an account to join the conversation.

Please submit the verbose debug log files (check my signature for how to).
5 years 1 month ago #36118

Please Log in or Create an account to join the conversation.

  • Posts: 30
  • Thank you received: 1

File Attachment:

File Name: log_21-22-52.txt
File Size:84 KB


hope it helps
Current gear:
- AVX
- E8HD + ASI294MC
- Celestron 150x30 + ASI224 for guiding
- Celestron Focuser for harp stars

SW:
- Linux NUC + Ubuntu + INDI nightly on the server
- Linux Ubuntu + KSTARS nightly on the client (via CAT5 wire)
5 years 1 month ago #36122
Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 2
I run mine from the USB port on the PI without issue
5 years 1 month ago #36123

Please Log in or Create an account to join the conversation.

  • Posts: 554
  • Thank you received: 138
Thanks, that's the sort of thing I need but the same log from the driver that's giving the incorrect values would help. I'm looking for the messages from the focuser.
5 years 1 month ago #36125

Please Log in or Create an account to join the conversation.

  • Posts: 554
  • Thank you received: 138
What system are you using? I think it's happening because of the way different systems and compilers handle the conversion between char and int.

Jasem, the celestron-gps code is using a char buffer for all it's replies:
char response[MAX_RESP_SIZE];
would changing this to:
unsigned char response[MAX_RESP_SIZE];
or
uint8_t response[MAX_RESP_SIZE];
help and not interfere elsewhere? Most other places either use ascii characters or the incorrect conversion doesn't matter.

I'd like to get this right but I'm not seeing the problem and the incorrect conversion isn't picked up by the CI builds so it's going to be difficult to ensure that it's OK until the user sees it.
Getting late now so I'm going to leave it until the morning.
5 years 1 month ago #36128

Please Log in or Create an account to join the conversation.

Time to create page: 3.237 seconds