Return to the Cloudy Nights Telescope Reviews home page


Speciality Forums >> Astronomy Software & Computers

Pages: 1 | 2 | 3 | (show all)
anat
sage


Reged: 06/03/04

PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO
      #5369851 - 08/15/12 10:31 AM Attachment (130 downloads)

Hello All,

Raspberry Pi is a small low cost platform for my new project - PiAstroHub.

I installed Open-PHD-guiding on the Pi with an assistance from a friend:
http://stargazerslounge.com/topic/158463-open-phd-indi-server-qhy5-on-a-raspberry-pi/

Now I can run PHD guiding on the device from iPad or Android via a X windows program (iSSH for iPad). I am now writing a web application to control a DSLR camera and to view photos taken by the camera via a web browser on the device. And yes, Goto can be commanded from SkySafari

I will keep you updated

Anat

Edited by anat (08/15/12 10:56 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
gonzothegreat
journeyman


Reged: 11/20/11

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5370175 - 08/15/12 01:49 PM

Greetings,

I'm the 'friend'
I'm also behind the following joined project with somebody else: http://code.google.com/p/eq-polar-alignment/

Still have to order my QHy5....


Post Extras: Print Post   Remind Me!   Notify Moderator  
psonice
Pooh-Bah


Reged: 07/24/09

Loc: Warrington, UK
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: gonzothegreat]
      #5370464 - 08/15/12 05:40 PM

Wonderful stuff. First we had the rush of people planning to buy a Pi to use as a regular computer with little IT knowledge, and I was a bit concerned about how it would work out, but now I'm starting to see lots of really cool projects like this

Is it fast enough to handle the guiding software? I know the CPU in it is particularly weak (attempts to run linux with a GUI without GPU acceleration have been very painful!), but it's enough to handle a lot of stuff. And the GPU looks reasonably good, and could definitely take a lot of the load in a guiding app.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: psonice]
      #5370677 - 08/15/12 08:46 PM

I am using a low-quality Class4 SD card to run Raspbian and it takes about 8 sec for a 2sec shot to complete a cycle. I will use a good Class 10 card and expect 2x-2.5x improvement. If I want more improvement, I may switch off image display during guiding in the source code because a graph can show guiding errors.

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5371258 - 08/16/12 09:08 AM

Now, I use a Sandisk 16GB Class 10 Extreme (45MB/s) SD card. I tested cycling shots with an exposure time of 1 sec. The time interval between shots (exposure+download+image display time) is about 3 sec. And for an exposure time of 2 sec, the time interval is about 4 sec.

ADDED NOTE (Aug 19): I could not reproduce the speed achieved above. I need to check!



Edited by anat (08/19/12 12:08 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
gonzothegreat
journeyman


Reged: 11/20/11

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5371285 - 08/16/12 09:26 AM

Anat, ignore my email about the SD card, just noticed that you've posted the answer here.

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: gonzothegreat]
      #5371321 - 08/16/12 09:55 AM

This is the step to install the QHY5 driver and Open-PHD-guiding after making a Raspbian “wheezy” SD card
http://www.raspberrypi.org/downloads

Note:
1. Set Locale to "en_US UTF8" otherwise there will be an error message when open PHDguiding.
2. The working directory is /home/pi/

----------------------------------
sudo apt-get update
sudo apt-get upgrade

# install dependencies
sudo apt-get install subversion
sudo apt-get install cmake
sudo apt-get install libusb-dev
sudo apt-get install cfitsio-dev
sudo apt-get install libnova-dev
sudo apt-get install fxload
sudo apt-get install libwxgtk2.8-dev
sudo apt-get install libv4l-dev

# Install INDI and QHY5 driver
svn co https://indi.svn.sourceforge.net/svnroot/indi/trunk indi
cd indi/libindi
cmake .
make
sudo make install
cd ..
cd 3rdparty/indi-qhy/
cmake .
make
sudo make install
sudo cp /usr/local/lib/libindi* /usr/lib/

# To check if the QHY5 is recognized, type the following command and then plug and unplug QHY5. QHY5 should be listed.

tail -f /var/log/syslog

# Run this command to start the indi server on Raspberry Pi

indiserver indi_qhy_ccd


# install Open-Phd-guiding

cd
svn checkout http://open-phd-guiding.googlecode.com/svn/trunk/ open-phd-guiding-read-only
cd open-phd-guiding-read-only/
cmake .
make
sudo make install

# Open an X terminal and type "PHD" in a command line. PHD will open in an X windows.

--------------------------------------------

Edited by anat (08/17/12 04:00 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
gonzothegreat
journeyman


Reged: 11/20/11

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5371802 - 08/16/12 03:57 PM

Excellent howto

Post Extras: Print Post   Remind Me!   Notify Moderator  
lambermo
sage


Reged: 07/16/07

Loc: .nl
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: gonzothegreat]
      #5384318 - 08/24/12 10:54 AM

Very cool project. Keep this going !

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: lambermo]
      #5387621 - 08/26/12 09:45 AM Attachment (85 downloads)

I found that INDI drivers and OpenPHD were quite slow and inconsistent. So, I compiled Lin_guider on Raspberry Pi.
http://sourceforge.net/projects/linguider/

Lin_guider is so much faster than OpenPHD+INDI. Images are downloaded almost immediately after capturing The steps to compile Lin_guider are as follows:

---------------------------------------------------------
sudo apt-get install libusb-1.0-0-dev
sudo apt-get install libqt4-dev
sudo apt-get install libftdi-dev
sudo apt-get install fxload

>>>> copy lin_guider-26.0_static.tar.bz2 to /home/pi
tar -xvf lin_guider-26.0_static.tar.bz2

cd lin_guider

>>>> copy lin_guider-27.0_sfx.tar.bz2 to /home/pi/lin_guider
tar -xvf lin_guider-27.0_sfx.tar.bz2

sudo ./lin_guider.bin

>>> To install QHY5 firmware
pi@raspberrypi ~/lin_guider/udev/qhy5 $ sudo sh qhy5_lg_install.sh

>>>> To run program
cd /home/pi/lin_guider/lin_guider_pack/lin_guider
./lin_guider
---------------------------------------------------------

I also attach a photo showing how the program looks like on X-server (iSSH) on iPad.

The next step is to make an interface for image capturing and display for DSLR



Edited by anat (08/26/12 08:24 PM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5388690 - 08/26/12 08:38 PM

To use PiAstroHub as SkyFi to connect between SkySafari and a mount, follow these steps:

-------------------------------------------------
sudo apt-get install ser2net
sudo sed -i '$ a\5555:raw:0:/dev/ttyUSB0:9600 NONE 1STOPBIT 8DATABITS' /etc/ser2net.conf
sudo /etc/init.d/ser2net restart
-------------------------------------------------

It is that simple Now all tcp communications via Port 5555 will be redirected to a serial port. I recommend using a PL2303-based usb-serial adapter.

Then set Port as 5555 in SkySafari. Done! PiAstroHub will function like SkyFi.

Edited by anat (08/27/12 08:42 PM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5389464 - 08/27/12 10:07 AM

I just added the plate-solving feature using the engine from astrometry.net which was capable to perform blind solving. After getting an image, I use plate-solving to find the exact pointing position and send the RA-DEC values to align a mount. The crosshair in Skysafari is automatically synced to the new position So, Goto can be done from SkySafari with high pointing accuracy.

The steps to compile the Astrometry engine are as follows:

------------------------------------------------

sudo apt-get install libcairo2-dev libnetpbm10-dev netpbm libpng12-dev libjpeg-dev python-numpy zlib1g-dev
wget http://astrometry.net/downloads/astrometry.net-0.38.tar.bz2
tar xjf astrometry.net-0.38.tar.bz2
cd astrometry.net-0.38
make
sudo make install
------------------------------------------------------

Edited by anat (08/27/12 08:45 PM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
tjay
Carpal Tunnel
*****

Reged: 02/03/07

Loc: just outside of Toronto
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5390699 - 08/28/12 12:09 AM

This thread makes it very tempting to order a Raspberry Pi....

Nice work!


Post Extras: Print Post   Remind Me!   Notify Moderator  
gonzothegreat
journeyman


Reged: 11/20/11

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: tjay]
      #5390848 - 08/28/12 04:29 AM

Just a reminder that if you want to use the astrometry tool, you do need to download the INDICES. Do contact the guys from astrometry for them.

Post Extras: Print Post   Remind Me!   Notify Moderator  
gavinm
Pooh-Bah


Reged: 08/26/05

Loc: Auckland New Zealand
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: gonzothegreat]
      #5392113 - 08/28/12 07:29 PM

You've seen this?

http://www.dpreview.com/news/2012/08/16/Ingenious-photographer-builds-mini-computer-into-battery-grip


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: gavinm]
      #5392492 - 08/29/12 12:16 AM

Hi Gavin,

Yes. We use the same gphoto2 library to control a DSLR. I am making a web application to wrap up all features and will post an update soon.

Edited by anat (08/29/12 12:50 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
PetPirate
member


Reged: 02/23/09

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5400291 - 09/02/12 10:19 PM

This is awesome, thanks so much for doing the legwork.

I've finally got my Pi up and running in wifi master (AP) mode and have ser2net configured. I can't believe it was that easy -- to think I nearly bought a SkyFi for more than twice the price of the Pi!

This will be great for me as I'm usually stuck up on my apartment roof with a netbook. I'm slap bang in the middle of Shanghai and due to poor visibility and blocked view in various directions, I can't always align properly, and used to rely on "syncing" a lot using KStars / INDI, which was painfully slow and cumbersome on a netbook.

I've also been using gphoto2 for a while to control my DSLR, so I'll be doing that too.

I'm interested in the astrometry.net solver too, I wonder how that will work in my orange skies.

For autoguiding, I've added a piggyback mount to my ETX-125 and have a modified webcam, but have never been able to get a decent polar alignment, and the ETX mount isn't great anyway. With all the functionality sitting on the Pi however, it's one less item of faffing around to get set up, so I'm much more likely to try it now and succeed I think.

I wonder how a focuser would integrate into this setup -- I remember LibINDI allowed for controlling focusers. An ideal setup would be taking a few photos with gphoto2, and doing rinse-repeat trial & error autofocusing.

I plan to integrate my Pi in a project box with 12V / 5V PSU so I basically have everything contained in one box with one power plug. The dream setup would be an automated setup as the Autostar is so slow and archaic -- auto align, auto focus, Goto provided by Skysafari.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: PetPirate]
      #5401774 - 09/03/12 08:17 PM

PetPirate,

Glad that you enjoy the Pi

INDI supports some focusers: Robofocus, Meade, and JMI. "Semi-auto" focusing is possible. The focuser movement and camera exposure are done in a series. Then the star images are compared by a user. The focuser is commanded to move to the position of the sharpest star image.

Anat


Post Extras: Print Post   Remind Me!   Notify Moderator  
MikeCMP
super member


Reged: 07/12/11

Loc: Chardon OH
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5403777 - 09/04/12 08:05 PM

I'm impressed, that is pretty cool! Jus the fact it replaces the skyfi is pretty cool by itself.

Is that a starshoot autoguider you have hooked up?

Mike


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: MikeCMP]
      #5404313 - 09/05/12 04:00 AM

Mike,

Yes. I use the Orion Starshoot Autoguider (aka QHY5) for the development.

Anat


Post Extras: Print Post   Remind Me!   Notify Moderator  
MikeCMP
super member


Reged: 07/12/11

Loc: Chardon OH
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5404666 - 09/05/12 10:55 AM

Interesting, I had looked at thee when they came out, but of course they were sold out, now that availability is improving I might have to pick one up.

Are you using a wireless wi-fi adapter to do ad-hoc networking so you can simulate a sky-fi, or is your system hooked up to a hub/router?

Quote:

Mike,

Yes. I use the Orion Starshoot Autoguider (aka QHY5) for the development.

Anat




Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: MikeCMP]
      #5404705 - 09/05/12 11:28 AM

I tried a wifi dongle (Asus N10) and found that it was pretty slow for an adhoc network. I use an Edimax Nano router instead.

http://www.edimax.com/en/produce_detail.php?pd_id=372&pl1_id=24&pl2_id=89


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5422700 - 09/15/12 06:00 PM Attachment (165 downloads)

This is the interface of PiAstroHub. A user can control Linguider and DSLR from a webbrower in a mobile device.

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5422708 - 09/15/12 06:06 PM Attachment (120 downloads)

There is a feature to find a guide star automatically in the new version of Linguider. The feature is incorporated in PiAstroHub. A user can also manually select a guide star by clicking "Tool" in "Guide Star Selection". That will open another window to manually select a guide star.

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5434426 - 09/22/12 01:07 PM

in Action

http://www.youtube.com/embed/ipiDTGgRVd0


Post Extras: Print Post   Remind Me!   Notify Moderator  
gonzothegreat
journeyman


Reged: 11/20/11

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5500466 - 11/02/12 07:05 AM

I have now installed the PiAstroHub on my Raspberry Pi. It's using Nginx and php5-fpm for the webserver.
My QHY5 should arrive today or Saturday.... will report on how it performs late on.


Post Extras: Print Post   Remind Me!   Notify Moderator  
Telstar69
newbie


Reged: 11/02/12

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5503737 - 11/04/12 11:02 AM

Quote:

To use PiAstroHub as SkyFi to connect between SkySafari and a mount, follow these steps:

-------------------------------------------------
sudo apt-get install ser2net
sudo sed -i '$ a\5555:raw:0:/dev/ttyUSB0:9600 NONE 1STOPBIT 8DATABITS' /etc/ser2net.conf
sudo /etc/init.d/ser2net restart
-------------------------------------------------

It is that simple Now all tcp communications via Port 5555 will be redirected to a serial port. I recommend using a PL2303-based usb-serial adapter.

Then set Port as 5555 in SkySafari. Done! PiAstroHub will function like SkyFi.




Hi there,

First post here, but been reading loads! Thanks for a great post on integrating the Pi with a scope!

I have a Skywatcher 130p AZ Goto with the latest synscan firmware. I am quite IT literate (I'm an IT consultant!), so I do understand all wonderful the things you are doing. I am mainly a Windows consultant, but do come across Linux and use it daily so I am quite comfortable at the command line. I have tried the above on my Pi, but Sky Safari will connect briefly, then ALL tcp communications stop until I reboot the Pi!

I have tried changing a few things inthe ser2net.conf file such as prefixing it with 192.168.0.114,5555 that should only use my WiFi adapter and keep the LAN connected. One thing though, I do have the WiFi connected to my LAN and not in an adhoc network...is this the issue?

Would love to hear from someone, as it's been driving me mad all weekend !!!

Clear Skies!

Tel


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: Telstar69]
      #5504578 - 11/04/12 09:12 PM

Hi Tel,

I didn't have the issue. I mainly use Ethernet connection. I also tried Wifi connection using an Asus N10 USB adapter once without any problem but it was a bit slow.

Is your Wifi adapter connected to a powered hub? It is recommended to use a powered hub because the power from Pi is not sufficient.

Anat


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5534388 - 11/22/12 08:05 PM Attachment (77 downloads)

I finally got Pi to work with both QHY5 and QHY8L

Post Extras: Print Post   Remind Me!   Notify Moderator  
vmsguy
sage


Reged: 01/09/07

Loc: West Virginia
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5553543 - 12/04/12 08:35 AM

Nice work Anat.

I have the 256MB version of the RaspberryPi. Are you using the 256 or 512MB version?

Also, are you overclocking the processor any?

This is going to be my next project.

Thanks,
Brent


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: vmsguy]
      #5558320 - 12/06/12 09:28 PM

Hi Brent,

I am using the 256MB version. It is sufficient for controlling both QHY5 and QHY8L. I overclocked it to 900MHz


Post Extras: Print Post   Remind Me!   Notify Moderator  
Watchgear
newbie


Reged: 12/12/12

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5568721 - 12/13/12 06:39 AM

Hi Everybody...

My name is Klaus and I am new to this forum, but familiar to many kinds of guiders and also a bit to Linux.
I have bought a RaspberryPi (Rev. B) and installed the actual 2012-10-28-wheezy-raspbian.img. Then I followed the instructions from Anat's post from 08/26/12 to install Lin_Guider and the QHY5 driver.

Everything went well with no errors at all. When I connect the QHY5, I can see, that it is recognized by the OS (looking at /var/log/messages). I started Lin_Guider and configured it to "QHY5".

But now - whatever I do - the QHY5 is not recognized by Lin_Guider. "Cannot open device QHY5"...

Any idea for me?


And beyond that - a few questions about the project:

Is there a chance or are there any plans to enable binning on the QHY5?

And what about dithering - has anybody thought about that?

I am really exited waiting for your answers;-)

Best regards
Klaus


Post Extras: Print Post   Remind Me!   Notify Moderator  
Watchgear
newbie


Reged: 12/12/12

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: Watchgear]
      #5570879 - 12/14/12 01:42 PM

Got it...

I also installed indi & PHD - after that, Lin_Guider worked!

Best regards
Klaus


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: Watchgear]
      #5572025 - 12/15/12 05:12 AM

Hi Klaus,

I think that the camera firmware is not properly loaded. You don't need to have INDI and PHD. Download the firmware from
http://sourceforge.net/projects/cccd/files/firmware/

And use the command
sudo dpkg -i firmware-ccd_1.0_all.deb

use lsusb to see if the camera is recognized.


Post Extras: Print Post   Remind Me!   Notify Moderator  
giorgio_ne
member


Reged: 04/22/10

Loc: London, England
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5578601 - 12/19/12 09:14 AM

Great work Anat!!

Since the Rasberry Pi seems to have a MIPI CSI-2 camera connector, do you think it would be possible to connect a daughter board with a CCD fitted on it one day?

I'm just thinking of new ways to play with this cute piece of hardware...


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: giorgio_ne]
      #5600381 - 01/01/13 09:43 PM

I think the CSI-2 interface may work only for webcams.

Post Extras: Print Post   Remind Me!   Notify Moderator  
netwolf
super member
*****

Reged: 09/03/05

Loc: NSW, Australia
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5640171 - 01/24/13 08:20 AM

Anat great work, would this work using the odroid boards.
http://www.hardkernel.com/renewal_2011/main.php
Also what application are you using to capture from and control the qhy8l? Could this work with other dedicated ccd imagers.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: netwolf]
      #5641382 - 01/24/13 08:10 PM

I think this would work with odroid. I am now using MK808 (Dual core Rockchip). It is small and fast. I am using a modified CCD program
http://sourceforge.net/projects/cccd/
to control QHY8L


Post Extras: Print Post   Remind Me!   Notify Moderator  
GonZoo
newbie


Reged: 01/15/13

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5701142 - 02/26/13 08:22 AM

Congratulations for this project! I'm truly interested on it!

Have you done any field tests? I'm mainly interested on autoguiding. Shutting my DSLR is just a secondary objective.

Just to clarify, I think almost prepared to run it: I have a QHY5 with a guider scope, a Raspberry PI with a USB WIFI dongle, a GC5-GT mount, experience with linux...

Edited by GonZoo (02/26/13 08:26 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: GonZoo]
      #5702556 - 02/26/13 09:48 PM

Hi GonZoo,

It is not tested in the field yet. Please send me your email address. I can send you the code for beta-testing.


Post Extras: Print Post   Remind Me!   Notify Moderator  
bm_too
journeyman


Reged: 05/08/09

Loc: Ontario,Canada
Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5745332 - 03/20/13 03:00 PM

Interesting project. I am not much of a web programmer, do you have your webinterface control code posted somewhere ?

Cheers,
Barry


Post Extras: Print Post   Remind Me!   Notify Moderator  
patdut63fromFr
newbie


Reged: 07/31/07

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: bm_too]
      #5754085 - 03/24/13 02:01 PM

Hello Anat and everybody,
I am very interested in this project and follow for 3weeks.
I just ordered a raspberry pi.
I'd like to know if it is possible to connect a DMK cam on the raspberry pi. Would there be any power issue with the cam ?
kind regards
Pat


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: patdut63fromFr]
      #5774703 - 04/03/13 04:39 AM

Hello,

I will release the codes soon after some tests from beta testers. Recently, I use the MK808 dual core Android TV stick for this project because it is much faster, smaller and cheaper overall. I am not sure about DMK cameras. To use it for autoguiding, you may need to look at GoQat which supports the camera.
http://canburytech.net/GoQat/index.html
I successfully compiled GoQat on Raspberry Pi some time ago.

Best regards,
Anat


Edited by anat (04/03/13 04:41 AM)


Post Extras: Print Post   Remind Me!   Notify Moderator  
ccs_hello
Postmaster
*****

Reged: 07/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5778245 - 04/04/13 06:08 PM

Anat,

Are you running MK808 on Linux or Android?

I am assuming for this project, you are fork-lifting the whole thing to make it Linux for easier to support??

BTW, if it ends up to be not the optimal solution, one can always change it back to XBMC video player .
On that front, will RaspberryPi or MK808 be a better dual-use solution?

Clear Skies!

ccs_hello


Post Extras: Print Post   Remind Me!   Notify Moderator  
patdut63fromFr
newbie


Reged: 07/31/07

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: ccs_hello]
      #5779612 - 04/05/13 01:05 PM

Hello all,

I have tested my all new raspberrypi to drive my orion atlas mount using skysafari. It works very fine. But the 2 usb ports are occupied one by the usb wifi dongle the other by the Raspberry which handle the mount. To answer a question I have seen somewhere: the handle is needed to make it works.
So there is no other room to connect a cam.
The amount of the installation to drive an Orion Atlas mount is as follow:
raspberry B 42€
box for rpi 10€
wifi dongle 10€
usb/RS232 14€

for a total of 76€ (100$) which is the half price of the skyfi orion device (in Europe).

Unfortunately I have read somewhere that the usb inteface is unique and the 2 plugs share the same interface. So there is nothing to wait in term of performance. But maybe it is sufficient for autoguiding.

Anat you are true, the MK808 looks to be a better alternative, wifi, bluetooth are included in device. But unfortunately there is only one usb plug. It would have been fun to make acquisition with the same device as the one that autoguide and drive the mount. But it seems not to be done even with the MK808.


Post Extras: Print Post   Remind Me!   Notify Moderator  
patdut63fromFr
newbie


Reged: 07/31/07

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: patdut63fromFr]
      #5779616 - 04/05/13 01:08 PM

Anat, I have a question for you, what you done to successfully compile GoQat on the raspberry.
Thanks for your answer.


Post Extras: Print Post   Remind Me!   Notify Moderator  
ccs_hello
Postmaster
*****

Reged: 07/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: ccs_hello]
      #5781266 - 04/06/13 08:27 AM

Ouch, that MK808 has so many cousins:

http://dl.miniand.com/tecknight/RK3066Devices.html

Buying the right type (for picuntu) would be quite a challenge.

Clear Skies!

ccs_hello


Post Extras: Print Post   Remind Me!   Notify Moderator  
ccs_hello
Postmaster
*****

Reged: 07/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: ccs_hello]
      #5781790 - 04/06/13 12:38 PM

808's little brother info MK802

http://en.wikipedia.org/wiki/Android_Mini_PC_MK802

Anyway, $40-ish price tag (808 cloned version) for a 1.5GHz A9 quad core, 1GB RAM, 8GB NAND flash, HDMI out, USB, USB OTG, WiFi, and Bluetooth all included is not bad. Not bad at all.

Clear Skies!

ccs_hello


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: ccs_hello]
      #5787294 - 04/09/13 02:34 AM

Quote:

Anat,

Are you running MK808 on Linux or Android?

I am assuming for this project, you are fork-lifting the whole thing to make it Linux for easier to support??

BTW, if it ends up to be not the optimal solution, one can always change it back to XBMC video player .
On that front, will RaspberryPi or MK808 be a better dual-use solution?

Clear Skies!

ccs_hello




Yes. I run Ubuntu (PreAlpha 0.3) on MK808. It is very stable. MK808 is a better solution.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: ccs_hello]
      #5787297 - 04/09/13 02:37 AM

Quote:

808's little brother info MK802

http://en.wikipedia.org/wiki/Android_Mini_PC_MK802

Anyway, $40-ish price tag (808 cloned version) for a 1.5GHz A9 quad core, 1GB RAM, 8GB NAND flash, HDMI out, USB, USB OTG, WiFi, and Bluetooth all included is not bad. Not bad at all.

Clear Skies!

ccs_hello




The best RK3066 module in my opinion is the original MK808 with the RK901 wifi chip. The wifi chip works in linux for client, access point, and adhoc modes. I got several MK808 sticks from
http://www.geekbuying.com/item/MK808-Dual-Core-Android-4-1-Jelly-Bean-TV-BOX-...

It is the right one.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: patdut63fromFr]
      #5787299 - 04/09/13 02:42 AM

Quote:

Hello all,

I have tested my all new raspberrypi to drive my orion atlas mount using skysafari. It works very fine. But the 2 usb ports are occupied one by the usb wifi dongle the other by the Raspberry which handle the mount. To answer a question I have seen somewhere: the handle is needed to make it works.
So there is no other room to connect a cam.
The amount of the installation to drive an Orion Atlas mount is as follow:
raspberry B 42€
box for rpi 10€
wifi dongle 10€
usb/RS232 14€

for a total of 76€ (100$) which is the half price of the skyfi orion device (in Europe).

Unfortunately I have read somewhere that the usb inteface is unique and the 2 plugs share the same interface. So there is nothing to wait in term of performance. But maybe it is sufficient for autoguiding.

Anat you are true, the MK808 looks to be a better alternative, wifi, bluetooth are included in device. But unfortunately there is only one usb plug. It would have been fun to make acquisition with the same device as the one that autoguide and drive the mount. But it seems not to be done even with the MK808.




Congrats for the Skyfi setup !
Both Raspberry Pi and MK808 works with a powered usb hub. In my setup I use:
QHY6 for autoguiding
QHY8L or DSLR for image capturing
USB-serial adapter for mount control
USB sound adapter
connected to a hub without any problem.


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: patdut63fromFr]
      #5787302 - 04/09/13 02:45 AM

Quote:

Anat, I have a question for you, what you done to successfully compile GoQat on the raspberry.
Thanks for your answer.




These are steps to compile GoQat:
sudo apt-get install gawk
sudo apt-get install libgtk2.0-dev
sudo apt-get install libgoocanvas-dev
sudo apt-get install libxpa-dev
sudo apt-get install saods9
sudo apt-get install grace
sudo apt-get install libunicap2-dev
sudo apt-get install autoconf

>>> Install GoQat
tar -xvf goqat-0.9.8.tar.gz
cd goqat-0.9.8
./configure
make
sudo make install


Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5789596 - 04/10/13 04:16 AM

I am ready to release the source codes. Thank all testers and developers for your support.

https://sourceforge.net/projects/iastrohub/

Now a tablet can control the autoguider, CCD, DSLR, and mount via a tiny hub I recommend MK808 (original with RK901 Wifi chip).

Best regards,
Anat


Post Extras: Print Post   Remind Me!   Notify Moderator  
pfile
Carpal Tunnel


Reged: 06/14/09

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: anat]
      #5875002 - 05/20/13 11:56 PM

so have you tried openPHD again? it seems like they have made a lot of progress recently.

Post Extras: Print Post   Remind Me!   Notify Moderator  
anat
sage


Reged: 06/03/04

Re: PiAstroHub: RaspberryPi for Autoguiding+DSLR+GOTO new [Re: pfile]
      #5875159 - 05/21/13 05:14 AM

I have never tried openPHD after using Linguider. Linguider is super fast on Arm devices.

Post Extras: Print Post   Remind Me!   Notify Moderator  
Pages: 1 | 2 | 3 | (show all)


Extra information
5 registered and 5 anonymous users are browsing this forum.

Moderator:  Bowmoreman, richard7 

Print Thread

Forum Permissions
      You cannot start new topics
      You cannot reply to topics
      HTML is disabled
      UBBCode is enabled


Thread views: 8583

Jump to

CN Forums Home




Cloudy Nights Sponsor: Astronomics