×

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: 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.

Chris,

Try with uint8_t and see if you get any issues.
5 years 1 month ago #36129

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

  • Posts: 36
  • Thank you received: 0
Chris,
You wanted the verbose log file I think. Attached please find the log file for focuser in which I only opened profile, and in focus module I requested to move focuser a few times, in each direction. There was NO movement of the focuser. In system action/status window at bottom of Focus module, it reports this below (but there is no movement), the outward focus requests result in no response .


2019-03-07T20:14:09 Focusing inward by 100 steps...
2019-03-07T20:14:08 Focusing inward by 100 steps...
2019-03-07T20:13:57 Focusing inward by 100 steps...
2019-03-07T20:13:55 Focusing inward by 100 steps...
2019-03-07T20:12:57 Idle.

Control panel for Celestron SCT focuser reports 0 for min, max, abs, and relative positions.
I did not redo calibration prior to this run. Next, I will redo calibration with Celestron Utility, put focuser in middle of its range, and re run this and get that log.
Hope this helps. Thanks
glen
(Hope I got this attachment inserted correctly.)

File Attachment:

File Name: log_20-08-34.txt
File Size:4,892 KB
5 years 1 month ago #36140
Attachments:

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

Time to create page: 1.335 seconds