Results 1 to 4 of 4
Thread: diy multi radio
-
02-21-2014, 10:41 PM #1
- Join Date
- Mar 2009
- Location
- boston ma
- Posts
- 86
diy multi radio
So i was kicking around the idea of building my own multi radio. reason being i am limited to the number of displays i have avail. i was wondering if anyone has done this and if so if they could point me in the direction of some examples. im thinking of combining com1 and ILS. oh yeah i fly the level d too.
Thanks
Tim
-
03-21-2014, 04:03 AM #2
Re: diy multi radio
Hi Tim, I am at the same stage as you. What software you are using? MSFS, X-Plane? I have now very good results with Teensy ++ board and Arduino. I use 7-segment displays controlled with MAX7219 chips, very straight forward. So far I have just make the connection with X-Plane, because no extra stuff needed. I will research the way to connect to FSX or FS9.
-
03-21-2014, 05:04 PM #3
Re: diy multi radio
-
08-17-2014, 06:06 AM #4
- Join Date
- Aug 2014
- Location
- France
- Posts
- 1
Re: diy multi radio
Hello , you can use multi lcd 1602 display , 6 ports for each display. on a mega card
exampe lcd1(rs1,e1,d7_1,d6_1,d5_,d4_1)
lcd2(rs,e2,d7_2,d6_2,d5_2,d4_2)
LiquidCrystal lcd1(12, 11, 5, 4, 3, 2);
LiquidCrystal lcd2(31,30 , 22,23, 24, 25);
For use display use lcd1.cursor(7,1); or lcd2.cursor (3,2) ;for second display
Best regards .