Skip to content

AliBarber/WSPRLite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoogleTest Unit Tests

WSPRLite

WSPRLite is a C++ header-only, lightweight, implementation of the WSPR protocol. It values simplicity, portability, and readability. It is especially targeted for use with embedded systems, such as Arduino or Teensy.

At it simplest, a message can be encoded with the following code:

#incude "wsprlite/WSPRLite.h"
.
.
.
.
using namespace wsprlite;
SymbolStream encoder;

encoder << CallSign("OH2XAB") << Locator("KP20") << PowerLevel(30);

auto symbols = encoder.encode();
for(auto symbol : symbols){
	std::cout << symbol << " ";
}

Limitations

At present, WSPRLite can only encode type 1 messages, with a max 6 char callsign, and 4 char locator.

Licence

WSPRLite is available under the MIT Licence. Pull requests and issues are welcomed.

About

Lightweight, simple, WSPR Encoder

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published