bash
Download and install
sudo dpkg -i scopegram1.0.0amd64.deb
Or for ARM64
sudo dpkg -i scopegram1.0.0arm64.deb
Install dependencies if needed
sudo apt-get install -f
bash
Clone or download the repository
cd /path/to/ScopeGram
Build Debian package
./build-deb.sh all
Install
sudo dpkg -i dist/scopegram1.0.0amd64.deb
bash
sudo scopegram
Controls:
bash
Move North at speed 5 for 2 seconds
sudo scopegram --up --speed 5 --time 2
Move West at max speed for 3 seconds on specific port
sudo scopegram -l -s 9 -t 3 -p /dev/ttyUSB0
Emergency stop on specific port
sudo scopegram --stop --port /dev/ttyUSB0
bash
sudo scopegram --scan
bash
sudo scopegram --debug --port /dev/ttyS0
-u, --up - Move telescope North
-d, --down - Move telescope South
-l, --left - Move telescope West
-r, --right - Move telescope East
-s, --speed N - Set speed (1-9)
-t, --time N - Movement duration in seconds (default: 1)
-p, --port DEV - Specify serial port (e.g., /dev/ttyS0)
--scan - Auto-scan ports for telescope
--stop - Send emergency stop command
--debug - Launch raw data monitor
-h, --help - Show help message
bash
sudo usermod -aG dialout $USER
Logout and login for changes to take effect.
bash
Move up for 1 second (default)
sudo scopegram --up
Move down for 5 seconds
sudo scopegram --down --time 5
Move left at slow speed
sudo scopegram --left --speed 3
bash
Slow nudge north for half second
sudo scopegram -u -s 1 -t 0.5
Fast slew east for 10 seconds
sudo scopegram -r -s 9 -t 10
bash
#!/bin/bash
Example: Pan and scan pattern
PORT="/dev/ttyUSB0"
Move right
sudo scopegram -r -s 5 -t 3 -p $PORT
Wait
sleep 1
Move up
sudo scopegram -u -s 5 -t 3 -p $PORT
Stop
sudo scopegram --stop -p $PORT
bash
Find telescope automatically
sudo scopegram --scan
Debug serial communication
sudo scopegram --debug --port /dev/ttyUSB0
Test with specific port
sudo scopegram --up --time 1 --port /dev/ttyS0
Support this project and get instant access to compiled versions for your platform.
No changelog available.