From 352f606480018586e00cc9a8b6541f137c05672f Mon Sep 17 00:00:00 2001 From: Egor Shitikov Date: Tue, 10 Sep 2024 22:44:31 -0700 Subject: [PATCH 1/4] Update README.md --- README.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/README.md b/README.md index 7ac2249..dee138f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Lora SA(Spectrum Analyzer) +# Supportted boards: +- Heltec Lora V3 128 x 64 OLED +- Heltec Wireless Stick V3 64 x 32 (Not tested) +- Heltec Wireless Stick Lite V3 No Display (Not Tested) +- Heltec Vision Master E290 - e-Ink 296 x 128 (No OSD) +- Heltec Vision MAster T190 - color TFT 320X170 (No OSD) +- LilyGo Radio Lora T3S3 V.2 SX1262 + ## RF Spectrum Analyzer using Lora Radio LORA hardware @@ -213,3 +221,54 @@ or buy : ![image](https://github.com/user-attachments/assets/a1e00b51-5566-4ff5-98fe-67eaeb5bc81f) We are using pin 41 as a Buzzer trigger. Connect buzzer + leg with pin 41 and - leg with the ground (GND). You can change the buzzer pin in the code. + +## DFRobot OSD Wiring +**Heltec V3 -> DFRobot OSD** +GND -> GND +3V3 -> 3V3 +26 -> SCK +34 ->MOSI +33 ->MISO +47 -> D3 + +More photos you can see there: +https://github.com/Genaker/LoraSA/issues/11 + +![image](https://github.com/user-attachments/assets/3ba8230d-21de-449d-881b-bdc5f5b4907d) + +# Camera to DF robot Wiring +Camera -> DFRobotOSD +Video out -> In +GND -> GND +3v3 -> 3V3 Heltec or some 3v on FPV + +# DFRobot to Drone or VTX(video transmitter) +**DF Robot -> VTX or ** +Video Out - Video IN + +``` +// SPI pins +#define OSD_CS 47 +#define OSD_MISO 33 +#define OSD_MOSI 34 +#define OSD_SCK 26 +``` + +## Joystick Wiring +https://www.aliexpress.us/item/2251832815289133.html +https://www.amazon.com/dp/B00P7QBGD2 + +**Loystic -> Heltec V3** +SW -> 46 +VRX -> 19 +VRY -> X has not been implemented yet ++5v -> 5V +GND -> GND + +## Buzzer/Beeper Wiring +TMB12A03 - in my case. Low voltage is better. +**Buzzer -> Heltec V3** ++ -> 41 +GND (another) -> GND + + From 266c78b99e3af03fe31492dd558b92b6796d798b Mon Sep 17 00:00:00 2001 From: Egor Shitikov Date: Tue, 10 Sep 2024 22:47:05 -0700 Subject: [PATCH 2/4] Update README.md --- README.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index dee138f..f421192 100644 --- a/README.md +++ b/README.md @@ -224,27 +224,27 @@ We are using pin 41 as a Buzzer trigger. Connect buzzer + leg with pin 41 and - ## DFRobot OSD Wiring **Heltec V3 -> DFRobot OSD** -GND -> GND -3V3 -> 3V3 -26 -> SCK -34 ->MOSI -33 ->MISO -47 -> D3 +GND -> GND
+3V3 -> 3V3
+26 -> SCK
+34 ->MOSI
+33 ->MISO
+47 -> D3
-More photos you can see there: +More photos you can see there:
https://github.com/Genaker/LoraSA/issues/11 ![image](https://github.com/user-attachments/assets/3ba8230d-21de-449d-881b-bdc5f5b4907d) # Camera to DF robot Wiring -Camera -> DFRobotOSD -Video out -> In -GND -> GND -3v3 -> 3V3 Heltec or some 3v on FPV +Camera -> DFRobotOSD
+Video out -> In
+GND -> GND
+3v3 -> 3V3 Heltec or some 3v on FPV
# DFRobot to Drone or VTX(video transmitter) -**DF Robot -> VTX or ** -Video Out - Video IN +**DF Robot -> VTX or **
+Video Out - Video IN
``` // SPI pins @@ -259,16 +259,16 @@ https://www.aliexpress.us/item/2251832815289133.html https://www.amazon.com/dp/B00P7QBGD2 **Loystic -> Heltec V3** -SW -> 46 -VRX -> 19 -VRY -> X has not been implemented yet -+5v -> 5V -GND -> GND +SW -> 46
+VRX -> 19
+VRY -> X has not been implemented yet
++5v -> 5V
+GND -> GND
## Buzzer/Beeper Wiring -TMB12A03 - in my case. Low voltage is better. +TMB12A03 - in my case. Low voltage is better.
**Buzzer -> Heltec V3** -+ -> 41 -GND (another) -> GND ++ -> 41
+GND (another) -> GND
From 857288e1363baece7b5679d1f94d8c13408b3673 Mon Sep 17 00:00:00 2001 From: Egor Shitikov Date: Tue, 10 Sep 2024 22:48:30 -0700 Subject: [PATCH 3/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f421192..04cb431 100644 --- a/README.md +++ b/README.md @@ -223,7 +223,7 @@ or buy : We are using pin 41 as a Buzzer trigger. Connect buzzer + leg with pin 41 and - leg with the ground (GND). You can change the buzzer pin in the code. ## DFRobot OSD Wiring -**Heltec V3 -> DFRobot OSD** +**Heltec V3 -> DFRobot OSD**
GND -> GND
3V3 -> 3V3
26 -> SCK
@@ -237,13 +237,13 @@ https://github.com/Genaker/LoraSA/issues/11 ![image](https://github.com/user-attachments/assets/3ba8230d-21de-449d-881b-bdc5f5b4907d) # Camera to DF robot Wiring -Camera -> DFRobotOSD
+**Camera -> DFRobotOSD**
Video out -> In
GND -> GND
3v3 -> 3V3 Heltec or some 3v on FPV
-# DFRobot to Drone or VTX(video transmitter) -**DF Robot -> VTX or **
+# DFRobot to Drone or VTX(video transmitter) +**DF Robot -> VTX or**
Video Out - Video IN
``` @@ -258,7 +258,7 @@ Video Out - Video IN
https://www.aliexpress.us/item/2251832815289133.html https://www.amazon.com/dp/B00P7QBGD2 -**Loystic -> Heltec V3** +**Loystic -> Heltec V3**
SW -> 46
VRX -> 19
VRY -> X has not been implemented yet
@@ -267,7 +267,7 @@ GND -> GND
## Buzzer/Beeper Wiring TMB12A03 - in my case. Low voltage is better.
-**Buzzer -> Heltec V3** +**Buzzer -> Heltec V3**
+ -> 41
GND (another) -> GND
From d13c8f5b6761bcd09fe2cb06fd53331366b24a66 Mon Sep 17 00:00:00 2001 From: Egor Shitikov Date: Tue, 10 Sep 2024 22:49:01 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04cb431..6a33caa 100644 --- a/README.md +++ b/README.md @@ -268,7 +268,7 @@ GND -> GND
## Buzzer/Beeper Wiring TMB12A03 - in my case. Low voltage is better.
**Buzzer -> Heltec V3**
-+ -> 41
+(+) -> 41
GND (another) -> GND