Mars 18/4/2014 Pi Noir camera with UV&IR cut filter.
Meade LX10, processed with registax.
Gordon77
Hello and thanks for the project idea. I'd like to control a mount (Losmandy G9 with DDS Model 492) via RPi as well.gordon77 wrote: Heres the details of the ST-4 interface
Sorry l hadn't noticed this question.EckyH wrote:Hello and thanks for the project idea. I'd like to control a mount (Losmandy G9 with DDS Model 492) via RPi as well.gordon77 wrote: Heres the details of the ST-4 interface
I'm not in electronics generally and and integrated circuits in particular, so please forgive me my dumb question: What's the reason for those four dedicated digital relays?
Found a lot of other types available from several dealers, some with 4 integrated relays.
Despite a search for the ST-4 "standard" documents (eg. for voltage and current used) - didn't found any other documents than descriptions of the pin-out...
Thank you very much!
E.
Hi,raceconditions wrote:So this very post was actually my inspiration for getting a Raspberry PI hooked up to my telescope. I ended up using Proto Armour and a series of mount adapters to make the attachment and I have to say it worked extremely well. I've blogged about this and some of the software I've been working on for GPS telescope sync and a WiFi telescope server.
For the hardware configuration, check here:
NexStar SE Telescope and Raspberry PI
Sorry I misread this, you already know the pinout !. I am the same on the ST4 volts and currents, I can't find any figures. I used the relays to get opto-isolation, and they can handle > 1A but I don't suspect the currents get anywhere near that.gordon77 wrote:Sorry l hadn't noticed this question.EckyH wrote:Hello and thanks for the project idea. I'd like to control a mount (Losmandy G9 with DDS Model 492) via RPi as well.gordon77 wrote: Heres the details of the ST-4 interface
I'm not in electronics generally and and integrated circuits in particular, so please forgive me my dumb question: What's the reason for those four dedicated digital relays?
Found a lot of other types available from several dealers, some with 4 integrated relays.
Despite a search for the ST-4 "standard" documents (eg. for voltage and current used) - didn't found any other documents than descriptions of the pin-out...
Thank you very much!
E.
The 4 relays provide the + and - ra and Dec controls.
Here's the st4 connection, but note it can change on various makes of equipments.
http://www.nexstarsite.com/OddsNEnds/AutoGuide.htm
Gordon77
When 'driving' ST4 you sink current, to earth/common rather than supplying current, but your interface may need current, possibly from the USB etc.Stupotmcdoodlepip wrote:Many ST4 devices are USB bus powered, so you can safely assume that the total required current is less than 500mA, however, in reality, if the inputs simply drive, for example, microcontroller inputs, then they'll likely only draw microamps at most.
Pretty simple to check using a multimeter (set to mA mode) in series with the relay switched contacts.
The relays are most likely used for galvanic isolation, e.g., where there's no guarantee that the two subsystems will share a common ground, say, for instance if your controller is powered by a mains adaptor and the guide camera is plugged into a PC or laptop.
I saw your post about taking a pic with an UV filter, does that mean that you can capture UV light? if so, could you take a picture of your face? I'm looking to set up an UV-capturing camera to 'check' people's skingordon77 wrote:noir[...]
Sorry I don't know if the Pi camera is sensitive to UV. I used an astronomy filter that cuts IR & UV that can blur the images. I think you'll need to look for a filter to pass UV to try.deivid wrote:I saw your post about taking a pic with an UV filter, does that mean that you can capture UV light? if so, could you take a picture of your face? I'm looking to set up an UV-capturing camera to 'check' people's skingordon77 wrote:noir[...]
Updates the pictures even quicker with a Pi2gordon77 wrote:Update.
Should now update the picture quicker (thanks to the tip from ethanol100!) plus a few minor bug fixes.
Picture from tonight, Canon 7D , 400mm f5.6 lens, guided by 80mm scope and Pi with camera and this software.
Gordon77
Code: Select all
735,736c735,740
<
< image = pygame.image.load(imagefile)
---
> try:
> image = pygame.image.load(imagefile)
> except pygame.error, message:
> print 'Failed initial load image:', imagefile
> time.sleep(0.5)
> image = pygame.image.load(imagefile)