https://github.com/f4goh/VnArduino
VNA software with an Arduino
https://github.com/f4goh/VnArduino
ad8302 ad9850 ad9851 amateur-radio amateurradio antenna antenna-analyzer antenna-swr-analyzer arduino encoder hf sga3386 vna
Last synced: 2 months ago
JSON representation
VNA software with an Arduino
- Host: GitHub
- URL: https://github.com/f4goh/VnArduino
- Owner: f4goh
- Created: 2015-06-16T18:48:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T13:15:16.000Z (over 7 years ago)
- Last Synced: 2025-01-31T08:03:52.914Z (11 months ago)
- Topics: ad8302, ad9850, ad9851, amateur-radio, amateurradio, antenna, antenna-analyzer, antenna-swr-analyzer, arduino, encoder, hf, sga3386, vna
- Language: Arduino
- Size: 4.91 MB
- Stars: 37
- Watchers: 8
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#VNA software with an Arduino #
F4GOH Anthony f4goh@orange.fr
June 2015
Hardware :
- Arduino or Nano
- AD9851
- AD8302
- Optional SD card
LOW level on D4 pin during reset to enter menu
All schematics soon on https://hamprojects.wordpress.com/
Use this program freely with Arduino 1.0.6
## Installation ##
To use the VnArduino program:
- Go to https://github.com/f4goh/VnArduino, click the [Download ZIP](https://github.com/f4goh/VnArduino/archive/master.zip) button and save the ZIP file to a convenient location on your PC.
- Uncompress the downloaded file. This will result in a folder containing the program, that has a name that includes the branch name, usually VnArduino-master.
- Rename the folder to VnArduino.
- Copy the renamed folder to the Arduino sketchbook\.
- you must add Arduino SPI library for AD9850 : F4GOJ Christophe f4goj@free.fr
Go to https://github.com/F4GOJ/AD9850SPI
- if you use microSD, add Arduino SDfat library
https://github.com/greiman/SdFat/tree/master/SdFat
- to download hex files directly without compilation take a look at
https://github.com/f4goh/VnArduino/blob/master/upload%20sans%20compil.zip
## Usage notes ##
To use 4x20 characters LCD Display, the LiquidCrystal_I2C and WIRE libraries must also be included.
```c++
#include
#include
#include
#include
#include
#include
```