リグエキスパートのAA-30.ZERO

AA-30.ZEROは、筐体と液晶ディスプレイとキーパッドとを省いたアンテナアナライザーAA-30です。このボードは、USB/RS232C変換器を介してあなたのPCに接続することができます。

私は、私のArduino Unoを変換のために用いました。簡単なサンプルプログラムがここにあります。

// UART bridge for data exchange between 
// RigExpert AA-30 ZERO antenna & cable analyzer and Arduino Uno
//
// Receives from the Arduino, sends to AA-30 ZERO.
// Receives from AA-30 ZERO, sends to the Arduino.
//
// 26 June 2017, Rig Expert Ukraine Ltd.
//
#include <SoftwareSerial.h>

SoftwareSerial ZERO(4, 7);  // RX, TX

void setup() {
  ZERO.begin(38400);        // init AA side UART
  ZERO.flush();
  Serial.begin(38400);      // init PC side UART
  Serial.flush();
}

void loop() {
  if (ZERO.available()) Serial.write(ZERO.read());    // data stream from AA to PC
  if (Serial.available()) ZERO.write(Serial.read());  // data stream from PC to AA
}

私のMac miniで、ボードはうまく動作しました。どのようなコマンドがあるかは、ここを見て下さい。https://rigexpert.com/products/kits-analyzers/aa-30-zero/getting-started-with-the-zero/

示されている値は、それぞれ周波数[Hz]、R [ohm]、X [ohm]です。この測定はRF出力端子に負荷を何も繋がない状態で行ったので、RやXの値は比較的大きく、また、あまり安定していません。

もし、あなたがそれが好みであれば、Arduino IDEとそのシリアルコンソールを使うことも勿論可能です。

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.