forked from matthewwall/weewx-sdr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthew Wall
committed
Mar 29, 2016
0 parents
commit 2cfc208
Showing
4 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*~ | ||
*.pyc |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0.1 30mar2016 | ||
* initial release |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# installer for the weewx-sdr driver | ||
# Copyright 2016 Matthew Wall, all rights reserved | ||
|
||
from setup import ExtensionInstaller | ||
|
||
def loader(): | ||
return SDRInstaller() | ||
|
||
class SDRInstaller(ExtensionInstaller): | ||
def __init__(self): | ||
super(SDRInstaller, self).__init__( | ||
version="0.1", | ||
name='sdr', | ||
description='Capture data from rtl_433', | ||
author="Matthew Wall", | ||
author_email="[email protected]", | ||
files=[('bin/user', ['bin/user/sdr.py'])] | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
weewx-sdr | ||
|
||
This is a driver for weewx that captures data from software-defined radio. | ||
|
||
|
||
Installation | ||
|
||
a) install weewx | ||
http://weewx.com/docs/usersguide.htm | ||
b) install rtl-sdr | ||
http://sdr.osmocom.org/trac/wiki/rtl-sdr | ||
c) install rtl_433 | ||
https://github.com/merbanan/rtl_433 | ||
|
||
1) download the driver | ||
|
||
wget -O weewx-sdr.zip https://github.com/matthewwall/weewx-sdr/archive/master.zip | ||
|
||
2) install the driver | ||
|
||
wee_extension --install weewx-sdr.zip | ||
|
||
3) configure the driver | ||
|
||
wee_config --reconfigure | ||
|
||
4) start weewx | ||
|
||
sudo /etc/init.d/weewx start |