|
|
|
|
||
|
Joined Nov 2006
80 Posts
|
Quote:
For my defense. I dont own a board yet. Just wanted to know if its possible to plug a Rssi to the board. Didnt find the rssi pin in the schematic.http://www.flytron.com/pdf/SimpleOSD_OPEN.pdf thx an be prepared for more stupid questions ![]() Just learing arduino programming... vscope |
|
|
||
|
|
||
|
|
Quote:
|
|
|
||
|
|
|
|
United States, ID, Fruitland
Joined Apr 2008
32 Posts
|
I had the same issue as well after switching cameras. Changing the text alignment to a value of 1 helped a little bit but I had to fine tune the pots connected to pin 6 and 11. After tuning both of them, I was able to get a clean OSD on the screen.
|
|
|
|
|
||
|
|
Quote:
Flashing a LED/buzzer or something like that, should be straight forward. If you use the main-loop you can just use the Arduino digitalWrite command. If you use the interrupt to flash I would recommend to access the registers directly. |
|
|
||
|
|
||
|
|
Quote:
![]() Just be aware that the RSSI-pin is just connected normally to an analog input. If your RSSI out is not buffered, you should consider a large resistor in series or a buffer. |
|
|
||
|
|
||
|
|
Quote:
Can't find the aircraft position in google earth, how do I do it ? Anyone like to answer my stupid question?
|
|
|
||
|
|
||
|
|
Quote:
Not quite sure I understand what you mean? You just wanna take the coordinates and put them into google earth yourself? Let's take this picture as an example: Coordinates from picture: 5601.2295 N 1229.3435 E Unfortunately there is more than one standard when it comes to GPS-coordinates. Some of them are: 1) Degrees/minutes/seconds 2) Degree/decimal/minutes In this case only the last coordinates differ from the way it's shown in google earth. The last 4 numbers (2295 and 3435) is decimal, where as it's minutes or seconds in google earth. That means, that you need to convert the coordinates. 2295 * (60/100) = 1377 3435 * (60/100) = 2061 Write this directly into google earth, and you will see the position of my plane in that picture. 56° 01' 13.77", 12° 29' 20.61" |
|
|
||
|
|
|
|
|
The Atmega uses an 10 bit ADC. 10 bit = 2^10 = 1024 steps. As the reference voltage for the ADC is 5 volt (0-5 volt), it will have a resolution at 5 volt / 1024 steps = 0.0049 volt / step. 0.9 - 1.1 volt will give you 0.2 volt from min to max.
0.2 volt / (0.0049 volt/bit) ~= 40 steps. If you show RSSI as %, that will give you a resolution of (100 % / steps) = 2.5 % per step. Enough? It depends on your need, but it should give you a descent RSSI reading. Steps can be directly calculated as: (1.1 volt - 0.9 volt) / (5 volt / 1024 steps) |
|
|
|
|
|
|
Joined Sep 2010
2,263 Posts
|
Well so I did my first look into the code, and it seems its easy to configure since you documented so well
..I'll just post here what I'm doing just for you to double check. Since I'll first try my luck with the lm1881: Code:
//Arduino = 0, SimpleOSD = 1 #define controller 1 Code:
// Current-sensor #define offset 0 #define current_cal 0.49 // As default configured for standard plane -> I'll use it on a plane. Do I have to put // infront of #define below // Quad/helicopter example...If I once put it on a quad how do I enable it to quad settings? Hmmm altitude less then 999 , that means if I go above 999 it will show me summary, do you guys use higher values? ![]() // Hide GPS-coordinates when altitude is more than x meter, can I put higher values? (not that I'm going to go that high )Regarding the button for config, are we talking that button that's on the arduino? That display of degrees in which one is flying, that you said is only for your country is very important for me, when I'll be flying with a narrow beam helical..can you modify it also for my country? Please PM me with additional details ![]() For a 3S lipo 10V for voltage alarm or should I go higher/lower? // END SETUP
|
|
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Discussion Diy osd | karl k | Video Piloting (FPV/RPV) | 2 | May 03, 2011 12:31 AM |
| Idea New DIY OSD? | atari7202 | Video Piloting (FPV/RPV) | 1 | Mar 25, 2011 12:08 AM |
| Discussion see my own diy OSD video | Passion | Aerial Photography | 7 | May 27, 2010 01:28 AM |
| Discussion REAL homebrew DIY OSD - Check it out! | jafoca | Video Piloting (FPV/RPV) | 8 | Jun 29, 2009 06:52 PM |
| Discussion picoOSD DIY PIC12F683 based OSD in C | kbosak | Video Piloting (FPV/RPV) | 6 | Jan 31, 2008 07:47 AM |