Page 1 of 1

Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 4:14 pm
by tasmaniac
I am wrapping up the changes required to run multiwii on an ardupilot mega. I am not using the oilpan shield, but the standard wii sensors.
I also have GPS working(tracking only) and a xbee connected, each on their own serial port.

Anybody else interested in this?

I will soon be making available arduino code that uses a nokia LCD shield to display real time data from the ardupilot. Color, shows more or less the same info as the desktop app. I have to clean up the code as to not embarrass myself. Currently uses a mega but I think I can trim down the code to run on a 168.
Interest in that also?

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 4:21 pm
by tasmaniac
Picture is worth a 1000 words

photo.JPG
(49.14 KiB) Not downloaded yet

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 6:46 pm
by miniquad
Looks quite impressive. I am interested. :)

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 10:52 pm
by Alexinparis
Yes, it's really impressive.
I use also this display for another project, its library is very well done.

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 11:00 pm
by Hamburger
what is the connection between that display and the arduino running the multiwii, please? Do buttons accompany the LCD?
Hamburger

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 11:15 pm
by tasmaniac
Currently I have the LCD shield from sparkfun running on an arduino mega for the display. The buttons come as part of the display shield.
It communicates to an ardupilot on the quadcopter with standard wii sensors, baro, and compass. Using the mtk16 gps library with its associated hardware.
I am using xbee's for communications between the two. Currently short range 2.4Ghz but will upgrade to long range 900Mhz.
Working on a menu system to allow you to configure the multiwii using the color lcd and buttons.
NKC electronics has a cheap version of the lcd shield for less than $20. I have not tested it.

I had mavlink working but need to go back and revisit that later. Code is commented out for now.

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 11:20 pm
by tasmaniac
Which library did you use for the LCD? I started out with the LCD_Library but ended up rewritting most of it to allow for multi-size fonts and to try to get more speed out of it. The screen I have is a nokia knockoff and does not support anything but 12-bit color. 4-bit would be good enough for this.

Currently getting 3-5 frames per sec refresh. Good enough for right now. Half the frame time is rendering and the other half is doing the 3d transform. The math is overkill but it works.

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Wed Jun 29, 2011 11:39 pm
by Hamburger
tasmaniac wrote:Which library did you use for the LCD? I started out with the LCD_Library but ended up rewritting most of it to allow for multi-size fonts and to try to get more speed out of it. The screen I have is a nokia knockoff and does not support anything but 12-bit color. 4-bit would be good enough for this.

I use a way simpler Textstar LCD. No dealing with fonts and sizes, just plain 16x2 characters (and bar graphs). The display acts as a kind of vt100 terminal without keys. It has 4 buttons which send chars 'A' to 'D'. This is also used in the later dev versions for navigation in the LCDconfiguration menu.
Currently getting 3-5 frames per sec refresh. Good enough for right now. Half the frame time is rendering and the other half is doing the 3d transform. The math is overkill but it works.

yes, sounds good enough if the 168 can handle it. I use bluetooth for communication between the LCD and the multiwii. While it is not long range it is still very usable for near tange wireless configuration over this and also telemetry transfer of flight data (current Amp draw, battery voltage and consumed mAh, cycle times, angles, sensor readings).
There are some wireless tx/rx combos named apc220 out there, work in the 450 MHz (?) range. Drawback is these can only do 57600 max on the serial side. Way cheaper than xbee though.

Keep going. Hamburger

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Tue Jul 05, 2011 4:25 pm
by ByteBandit
I am interested too. A very nice idea! :D

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Tue Jan 03, 2012 1:52 pm
by spruce_m00se
Hi

Im interested in this,
i have the ardupilot mega, im starting to work out how to put multiwii on it, i have figured out that it cant use the normal code, im quite a n00b at this but im defintely interested in having a telemetry screen,

a question, could i have the screen on my tx handset and wirelessly communicate with the cuad to receive the telemetry ?
im definately up for that, happy to help if i can although i suspect i wont be of much help yet,

thanks,
daniel

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Thu Jan 19, 2012 6:37 pm
by htran
Is it possible to install Multiwii on Ardupilot Mega + Oilpan?

I have a couple lying around, after not much success with Arducopter. Multiwii has been much more successful on a Scarab with a Paris board, but I would like to try the GPS functions.

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Mon Jun 11, 2012 9:31 am
by gregio
in interested too

Re: Any interest in Ardupilot mega? Color LCD monitor?

Posted: Thu Jun 14, 2012 10:03 am
by Hamburger
One way to get a first idea of what is already in the code is this
get the MWii code, open config.h and look at the section with the supported / preconfigured sensors/boards.

support for color LCD monitor (the 0.96 size OLED) is currently _not_ in the code. It was being worked on. Use the search function to find out more.