HF Receiver Software Source Code
As I stated on my YouTube channel, here's the updated source code for the HF receiver. See the post about the source code for the HF transmitter, as there are references to additional files that you will need. This code is provided with NO WARRANTY or guarantee it will work for you and your project. It is for your information and education purposes only, you are on your own to get it to work. // Havarti version 2 software for the HF receiver project // Version date: 07Mar2025 // By Level Up EE Lab (Daryn) #include <EEPROM.h> #include "D_si5351mcu.h" // https://github.com/pavelmc/Si5351mcu modified by DWaite to fix issue with spread spectrum #include <Adafruit_GFX.h> // Core graphics library https://github.com/adafruit/Adafruit-GFX-Library #include <Adafruit_ILI9341.h> // 2.8in display library #include <Rotary.h> // Rotary encoder: https://github.com/brianlow/Rotary #include <Adafruit_FT6206.h> // touchscreen ...