-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
6 changed files
with
86 additions
and
61 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 @@ | ||
.pio | ||
.vscode |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Simple Arduino Nano HF SWR/POWER meter | ||
Arduino Nano based SWR/POWER meter, which can measure SWR and POWER on HF bands from 10-100 mW up to 110W. It is based on popular design with tandem match on binocular toroids and calibrated by using built in power meter from commercial HF transceiver. | ||
|
||
![alt text](images/tandem.jpg) | ||
![alt text](extras/images/tandem.jpg) | ||
|
||
Metal box is used as a case with SSD1306 display and two PL connectors, powered from 9V battery | ||
|
||
![alt text](images/meter.jpg) | ||
![alt text](extras/images/meter.jpg) |
File renamed without changes
File renamed without changes
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,21 @@ | ||
|
||
[platformio] | ||
description = Arduino SWR power meter | ||
default_envs = arduino_nano | ||
|
||
[env] | ||
platform = atmelavr | ||
framework = arduino | ||
lib_deps = | ||
contrem/arduino-timer @ 3.0.0 | ||
adafruit/Adafruit SSD1306 @ 2.5.7 | ||
check_tool = cppcheck | ||
check_flags = | ||
cppcheck: --suppress=*:*.pio\* --inline-suppr -DCPPCHECK | ||
check_skip_packages = yes | ||
monitor_speed = 115200 | ||
|
||
[env:arduino_nano] | ||
board = nanoatmega328 | ||
board_build.mcu = atmega328p | ||
board_build.f_cpu = 16000000L |
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