This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='ASCII'?> | |
<?grc format='1' created='3.7.5'?> | |
<flow_graph> | |
<timestamp>Mon Oct 6 18:28:35 2014</timestamp> | |
<block> | |
<key>variable</key> | |
<param> | |
<key>id</key> | |
<value>samp_rate</value> | |
</param> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RS41 10-way 2mm pitch header | |
---------------------------- | |
______________________| |______________________ | |
| | | |
| 9 7 5 3 1 | | |
| | | |
| 10 8 6 4 2 | | |
|_______________________________________________________| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Running a 2m SatNOGS Ground Station? How about turning it into an APRS SatGate! | |
The idea is we tap off audio received by the fm_demod.grc flowgraph (compiled to satnogs_fm_demod.py) and feed this into Direwolf (an AFSK soundmodem). Direwolf runs constantly, and attempts to process received data whenever the FM demod flowgraph runs (which is basically for all observations except BPSK, APT, and CW). The CPU overhead of direwolf is minimal - I've been able to run it on a RPi3 without overruns. | |
MODIFICATIONS TO fm_demod.grc | |
----------------------------- | |
Edit fm_demod.grc in gnuradio-companion. If you're feeling masochistic, you can X-forward this from the ground station machine. | |
Add in a Float-to-Short Block, and a UDP sink. | |
Set the Float-to-Short block to have a scaling factor of 32767. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Fake rigctld listener. | |
# Hacked together in 10 minutes. | |
# | |
# Mark Jessop <vk5qi@rfhead.net> | |
# | |
import socket | |
import datetime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPGRADING RPI3 TO RASPBIAN STRETCH | |
----------------------------------- | |
Follow guide to upgrade from Raspbian Jessie to stretch: | |
https://linuxconfig.org/raspbian-gnu-linux-upgrade-from-jessie-to-raspbian-stretch-9 | |
As of July 2017, Wifi will break when you upgrade. | |
Revert to an older wifi firmware using: | |
> wget http://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_0.43+rpi4_all.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# FreeDV Sync Notification Script | |
# | |
from __future__ import print_function | |
import argparse | |
import smtplib | |
import socket | |
import sys | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Radiosonde Auto RX Tools | |
# Log-to-KML Utilities | |
# | |
# 2018-02 Mark Jessop <vk5qi@rfhead.net> | |
# | |
# Note: This utility requires the fastkml and shapely libraries, which can be installed using: | |
# sudo pip install fastkml shapely | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Habitat Radiosonde Cleanup Utility | |
# | |
# Mark Jessop 2018-11 | |
# | |
# Search for payload configuration documents which have been automatically generated by | |
# radiosonde_auto_rx. Eventually, delete the ones that are older than X weeks. | |
# | |
import couchdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# STRF Cronjob Script | |
# Run with: | |
# rtl_capture.sh 437e6 10m | |
# Settings | |
FREQ=$1 | |
RATE=2048e3 | |
GAIN=32.8 | |
WORKINGDIR=/home/pi/satobs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Mouse.h" | |
#include <Encoder.h> | |
// Change these two numbers to the pins connected to your encoder. | |
// Best Performance: both pins have interrupt capability | |
// Good Performance: only the first pin has interrupt capability | |
// Low Performance: neither pin has interrupt capability | |
Encoder myEnc(2, 3); | |
// avoid using pins with LEDs attached |
OlderNewer