Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Wall committed Mar 29, 2016
0 parents commit 2cfc208
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*~
*.pyc
2 changes: 2 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0.1 30mar2016
* initial release
18 changes: 18 additions & 0 deletions install.py
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'])]
)
29 changes: 29 additions & 0 deletions readme.txt
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

0 comments on commit 2cfc208

Please sign in to comment.