Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ESP32 WSPR Beacon
# ESP32 (and ESP8266) WSPR Beacon
This project is related to a Tech Minds video on how to build a WSPR beacon using an Si5351 and an ESP32 module. The files wihtin this repo are for use with Visual Studio Code.

Like this project? Send me a dono here: https://buymeacoffee.com/techminds_matt
Expand All @@ -14,6 +14,14 @@ US: https://amzn.to/49By4v1
**2W RF Amplifier**
UK: https://amzn.to/4sHx9Ce
US:https://amzn.to/4jKjeHt

# Device connectivity to Si5351
How to connect the Si5351 module to the various tested boards.

* **ESP32-S3-N16R8** connect the Si5351 with SDA to pin 8 and SCL to pin 9.
* **Generic ESP32-Wroom devkit** connect the Si5351 with SDA to 21 and SCL to pin 22.
* **Generic ESP8266** connect the Si5351 with SDA to pin D2 and SCL pin D1.

## Usage
Create a new PlatformIO project within Visual studio code, then replace main.cpp and platformio.ini with those in this repo. The board details wihtin the platformio.ini file are specific for the linked ESP32 module above.

Expand Down
Loading