This is the source code for the Wireless Allsky Camera project described on Instructables.
In order to get the camera working properly you will need the following hardware:
- An ASI camera from ZWO. Tested cameras include ASI120MC*, ASI120MM*, ASI120MC-S, ASI120MM-S, ASI224MC, ASI178MC, ASI185MC, ASI290MC, ASI1600MC
- A Raspberry Pi 2 or 3
- A USB wireless dongle if using a Pi 2. This one has been tested.
Note:* Owners of USB2.0 cameras such as ASI120MC and ASI120MM may need to do a firmware upgrade (This changes the camera to use 512 byte packets instead of 1024 which makes it more compatible with most hardware.)
You will need to install Raspbian on your Raspberry Pi. Follow this link for information on how to do it.
Make sure you have a working internet connection by setting it either through the GUI or the terminal.
Start by installing git. You may already have it installed:
sudo apt-get install git
Now fetch the code from this GitHub page. Open the terminal and type the following:
git clone https://github.com/thomasjacquin/allsky.git
Then navigate to the allsky directory:
cd allsky
Now, before running the install script, if you're running a Pi 2, it may not be compatible with armv7 architecture. Run cat /proc/cpuinfo
to know your processor model. If it doesn't say ARMv7, you'll need to change the first line of Makefile to say platform = armv6
Now, run the install script:
sudo ./install.sh
There is no 1-click update yet so until then, the easiest is to backup your config files, delete the allsky directory and follow the installation instructions again.
Here's a quick overview of the configuration files.
the first one is called settings.json. It contains the camera parameters such as exposure, gain but also latitude, longitude, etc.
nano settings.json
The second file called config.sh lets you configure the overall behavior of the camera. Options include functionalities such as upload, timelapse, dark frame location, keogram.
nano config.sh
In order to upload images and videos to your website, you'll need to fill your FTP connection details in ftp-settings.sh
nano scripts/ftp-settings.sh
saveImageNight.sh is called every time the camera takes a new image at night. You can play with this file in case your sensor is not dead center.
saveImageDay.sh is called every time the camera takes a new image during the day. Images are not archived on the SD card. They are only resized and uploaded periodically in order to monitor the sky by day.
At the end of the night endOfNight.sh is run. It calls a few other scripts based on your config.sh content.
nano is a text editor. Hit ctrl + x, followed by y and Enter in order to save your changes.
Systemd is used to launch the software automatically when the Raspberry Pi boots up. To enable or disable this behavior, you can use these commands.
sudo systemctl enable allsky.service
sudo systemctl disable allsky.service
Note:* The service is enabled by default.
When you want to start, stop or restart the program, you can use one of the following commands:
sudo service allsky start
sudo service allsky stop
sudo service allsky restart
To know the status of the allsky software, type:
sudo service allsky status
Starting the program from the terminal can be a great way to track down issues as it provides debug information. To start the program manually, make sure you first stop the service and run:
./allsky.sh
If you are using a desktop environment (Pixel, Mate, LXDE, etc) or using remote desktop or VNC, you can add the preview
argument in order to show the images the program is currently saving.
./allsky.sh preview
If you don't want to configure the camera using the terminal, you can install the web based graphical interface. Please note that this will change your hostname to allsky, install lighttpd and replace your /var/www/html directory. It will also move settings.json to /var/www/html.
sudo gui/install.sh
Note:* If you use an older version of Raspbian, the install script may fail on php7.0-cgi dependency. Edit gui/install.sh and replace php7.0-cgi by php5-cgi.
After you complete the GUI setup, you'll be able to administer the camera using the web UI by navigating to
http://your_raspberry_IP
or
http://allsky.local
The default username is 'admin' and the default password is 'secret'.
A public page is also available in order to view the current image without having to log into the portal. This can be useful for people who don't have a personal website but still want to share a view of their sky :
http://your_raspberry_IP/public.php
Note:* The GUI setup uses /var/www/html/settings.json for the camera settings. If, for some reason, you prefer to go back to the non-gui version, make sure to edit your config.sh file to have CAMERA_SETTINGS="settings.json" instead.
The dark frame subtraction feature was implemented to remove hot pixels from night sky images. The concept is the following: Take an image with a cover on your camera lens and subtract that image later to all images taken throughout the night.
You only need to follow these instructions once.
Manual method:
- make sure config.sh has a DARK_FRAME configuration. Default is "dark.png"
- Place a cover on your camera dome
- Set darkframe to 1 in settings.json
- Reboot the Raspberry Pi:
sudo reboot now
- A new file has been created at the root of the project: dark.png by default
- Set darkframe to 0 in settings.json
- Reboot the Raspberry Pi:
sudo reboot now
- Remove the cover on the dome
GUI method:
- make sure config.sh has a DARK_FRAME configuration. Default is "dark.png"
- Place a cover on your camera dome
- Open the Camera Settings tab and set Dark Frame to Yes.
- Hit the Save and Reboot button
- A new file has been created at the root of the project: dark.png by default
- Open the Camera Settings tab and set Dark Frame to No.
- Hit the Save and Reboot button
- Remove the cover on the dome
The dark frame is now created and will always be subtracted from captured images. In case the outside temperature varies significantly and you start seeing more / less hot pixels, you can run theses instructions again to create a new dark frame.
By default, a timelapse is generated at dawn from all of the images captured during last night.
To disable timelapse, open config.sh and set
TIMELAPSE=false
A Keogram is an image giving a quick view of the night activity. It was originally invented to study the aurora borealis. For each image taken during the night, a central vertical column 1 pixel wide is extracted. All these columns are then stitched together from left to right. This results in a timeline that reads from dusk to dawn.
To get the best results, you will need to rotate your camera to have north at the top. That way, using a fisheye lens, you end up with the bottom of the keogram being the southern horizon and the top being the northern horizon.
Note that it will only show what happens at the meridian during the night and will not display events on the east or west.
The program takes 3 arguments:
- Source directory
- File extension
- Output file
Example when running the program manually:
./keogram ./images/20180223/ jpg ./images/20180223/keogram.jpg
To disable keograms, open config.sh and set
KEOGRAM=false
Startrails can be generated by stacking all the images from a night on top of each other. The program takes 4 arguments:
- Source directory
- File extension
- Brightness treshold to avoid over-exposure: 0 (black) to 1 (white).
- Output file
Example when running the program manually:
./startrails ./images/20180223/ jpg 0.15 ./images/20180223/startrails.jpg
To disable automatic startrails, open config.sh and set
STARTRAILS=false
In order to keep the Raspberry Pi SD card from filling up, 2 settings have been added to config.sh. Automatic deletion is enabled by default and will keep 2 weeks of data on the card.
AUTO_DELETE=true
NIGHTS_TO_KEEP=14
Modify these values if you wish to increase/decrease the number of nights to retain on the card. Set to false to keep all nights (requires manual management of SD card free space).
When using the allsky service, issues are written to a log file. In case the program stopped, crashed of behaved in an abnormal way, you can take a look at this log file:
tail /var/log/allsky.log
If you want to modify a compiled file, you'll need to edit the corresponding .cpp file and run the following command from the root of the allsky directory:
make all
This will compile the new code and create a new binary.
If you've built an allsky camera, please send me a message and I'll add you to the map.
- version 0.1: Initial release
- version 0.2: Separated camera settings from code logic
- version 0.3: Added dark frame subtraction
- version 0.4: Added Keograms (summary of the night in one image)
- version 0.5: Added Startrails (image stacking) with brightness control
- Keograms and Startrails generation is now much faster thanks to a rewrite by Jarno Paananen.
- version 0.6: Added daytime exposure and auto-exposure capability
- Added -maxexposure, -autoexposure, -maxgain, -autogain options. Note that using autoexposure and autogain at the same time may produce unexpected results (black frames).
- Autostart is now based on systemd and should work on all raspbian based systems, including headless distributions. Remote controlling will not start multiple instances of the software.
- Replaced
nodisplay
option withpreview
argument. No preview in autostart mode. - When using the GUI, camera options can be saved without rebooting the RPi.
- Added a publicly accessible preview to the GUI: public.php
- Changed exposure unit to milliseconds instead of microseconds