Add Transceiver interface
12
README.md
|
|
@ -84,6 +84,8 @@ The Howto DIY is [here](doc/ESP32DR_DIY-Thai.pdf)
|
|||
|
||||
Solder jumper is needed depending on a transceiver.
|
||||
|
||||

|
||||
|
||||
|Manufacture|RJ11-1 (+VIN)|RJ11-2 (SPK)|RJ11-3 (PTT)|RJ11-4 (GND)|RJ11-5 (MIC)|RJ11-6 (SQL)|
|
||||
|---|---|---|---|---|---|---|
|
||||
|Alinco DR-135(DB9)|-|2|7|5|9|1|
|
||||
|
|
@ -93,19 +95,21 @@ Solder jumper is needed depending on a transceiver.
|
|||
|
||||
for Alinco DR-135(DB9)
|
||||
|
||||

|
||||

|
||||
|
||||
for ICOM IC2200(RJ45)
|
||||
|
||||

|
||||

|
||||
|
||||
for Yaesu FT-2800(RJ11)
|
||||
|
||||

|
||||

|
||||
|
||||
for Handheld
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## Howto Devellop
|
||||
-Pull and Compile by PlatformIO on the Visual Studio Code.
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
|
@ -154,7 +154,7 @@ void defaultConfig()
|
|||
config.wifi_client = true;
|
||||
config.synctime = true;
|
||||
config.mqtt_port = 1883;
|
||||
config.aprs_beacon = 30;
|
||||
config.aprs_beacon = 600;
|
||||
config.gps_lat = 13.7555;
|
||||
config.gps_lon = 100.4930;
|
||||
config.gps_alt = 3;
|
||||
|
|
@ -455,7 +455,7 @@ void setup()
|
|||
if (digitalRead(0) == LOW) {
|
||||
defaultConfig();
|
||||
Serial.println("Manual Default configure!");
|
||||
delay(3000);
|
||||
while(digitalRead(0) == LOW);
|
||||
}
|
||||
|
||||
//ตรวจสอบคอนฟิกซ์ผิดพลาด
|
||||
|
|
|
|||