Control Systems

The core of the control system integrates a Raspberry Pi 4 running a dedicated Python application.

This setup interfaces with an ESP32 microcontroller, programmed in C++, to precisely control stepper motors responsible for adjusting both the vacuum capacitor’s position and the azimuthal orientation of the magnetic loop antenna.

Additionally, the system includes a low-cost Vector Network Analyzer (VNA) to acquire antenna characteristics continuously during sweeping operations.

Communication between the Raspberry Pi and the ESP32 is facilitated through a 2.4 GHz WiFi link in Access Point (AP) mode, suitable for field operations without the need for a router.

For antenna tuning, two methods have been implemented.

The first method allows manual tuning by entering the desired operating frequency via a keypad, providing flexibility and precision in frequency selection.

The second tuning method utilizes Bluetooth communication with an Icom IC-705 transceiver for semi-automatic tuning.

This method allows the control system to communicate with the transceiver to continuously optimize antenna settings based on the selected operating frequency, simplifying the tuning process during operations.

To switch between the transceiver (or receiver) and the VNA, an RF relay has been implemented.

This relay enables seamless switching between antenna operations for transmission or reception with the transceiver and antenna analysis with the VNA.

To enhance monitoring capabilities further, a small ESP32 cam is integrated for remote visual inspection of the vacuum capacitor positioning, providing real-time feedback during adjustments.

I am fully aware that this is a gadget with no real added value, but I found this camera in my junk box and thought it would be a good opportunity to use it, especially to manage it from a software point of view.

Likewise, the ESP32 unit was upgraded with a small OLED display providing basic information on the communication link, battery level, temperature, and humidity, which are obtained via an I2C DHT sensor.

The ESP32 unit installed on the antenna supporting structure is powered by means of a 22Volts RC model battery, complete with a minimum voltage detection system to protect it from total discharging.

Additionally, a WSPR (Weak Signal Propagation Reporter) reporting system is integrated to monitor and analyze signal reception from the antenna, providing insights into propagation conditions and antenna performance over time.

The Python application on the Raspberry Pi serves as the central control hub, managing all aspects of the system, including VNA data acquisition, WSPR reporting, user interface operations, communication protocols, coordination of tuning methods, and RF relay control.

Conversely, the ESP32 microcontroller specializes in real-time control of the stepper motors, ensuring precise adjustment of the capacitor position and antenna azimuth.

This division of tasks optimizes system performance by dedicating real-time control tasks to the ESP32, while the Raspberry Pi focuses on higher-level processing and overall system management.