Sneak preview of new WinGUI (Screenshots)

This forum is dedicated to software development related to MultiWii.
It is not the right place to submit a setup problem.
Software download
User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

jevermeister wrote:Hi,
I found one issue:

When I am connected to the FC and try to open the GUI settings page i got a message that this is not possible - OK.
But when I am not connected, and open that page and then hit connect, I can change the settings there.

Is this OKAY?


Nils

nope, its a bug :) thanks for cathing it. It wont make any harm, just not logical. I'll fix it asap.

miniquad
Posts: 65
Joined: Wed Mar 23, 2011 8:17 pm

Re: Sneak preview of new WinGUI (Screenshots)

Post by miniquad »

zarkon wrote:
bob4432 wrote:
dongs wrote:Please release a beta of this already I absolutely hate java.


+1

+2

+3

kataventos
Posts: 702
Joined: Sun Aug 28, 2011 8:14 pm
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by kataventos »

Great work you´re doing, amazing! ;) Congratulations.

Cheers,
Henrique

PatrikE
Posts: 1976
Joined: Tue Apr 12, 2011 6:35 pm
Location: Sweden
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by PatrikE »

Another crazy idé...
Implement joystick and use the BTSERIAL part to control the copter via serial..(XBee or something)
Together with the videocapture and OSD overlay..

Code: Select all

 #ifdef BTSERIAL
    case 'K': //receive RC data from Bluetooth Serial adapter as a remote
       rcData[THROTTLE] = (SerialRead(0) * 4) + 1000;
       rcData[ROLL]     = (SerialRead(0) * 4) + 1000;
       rcData[PITCH]    = (SerialRead(0) * 4) + 1000;
       rcData[YAW]      = (SerialRead(0) * 4) + 1000;
       rcData[AUX1]     = (SerialRead(0) * 4) + 1000;
       break;
    #endif



Maybe you could add the airplane and heli graphics from my Branch?
The Airplane is ready to go public soon.

Nice work

/Patrik

User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

PatrikE wrote:Another crazy idé...
Implement joystick and use the BTSERIAL part to control the copter via serial..(XBee or something)
Together with the videocapture and OSD overlay..

Code: Select all

 #ifdef BTSERIAL
    case 'K': //receive RC data from Bluetooth Serial adapter as a remote
       rcData[THROTTLE] = (SerialRead(0) * 4) + 1000;
       rcData[ROLL]     = (SerialRead(0) * 4) + 1000;
       rcData[PITCH]    = (SerialRead(0) * 4) + 1000;
       rcData[YAW]      = (SerialRead(0) * 4) + 1000;
       rcData[AUX1]     = (SerialRead(0) * 4) + 1000;
       break;
    #endif



Maybe you could add the airplane and heli graphics from my Branch?
The Airplane is ready to go public soon.

Nice work

/Patrik

I'ts on the list... :D

PatrikE
Posts: 1976
Joined: Tue Apr 12, 2011 6:35 pm
Location: Sweden
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by PatrikE »

Your cool man.... 8-)

HappySundays
Posts: 9
Joined: Wed Feb 15, 2012 3:49 am

Re: Sneak preview of new WinGUI (Screenshots)

Post by HappySundays »

Hi, is there a way to be on the list of Beta testers?
I'd love to help test it out.

timecop
Posts: 1880
Joined: Fri Sep 02, 2011 4:48 pm

Re: Sneak preview of new WinGUI (Screenshots)

Post by timecop »

HappySundays wrote:Hi, is there a way to be on the list of Beta testers?
I'd love to help test it out.

http://code.google.com/p/mw-wingui/
code is already posted and it works.

kataventos
Posts: 702
Joined: Sun Aug 28, 2011 8:14 pm
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by kataventos »

Hi András, this is perfect! great job.

One question: does it supose to work with last dev? what´s the r569 DEV? not the last one I think... because Gui says "no valid answer from FC" .

Cheers,
Henrique

timecop
Posts: 1880
Joined: Fri Sep 02, 2011 4:48 pm

Re: Sneak preview of new WinGUI (Screenshots)

Post by timecop »

To make it work with 0203 dev I had to remove I2CErrors reading
i2cErrors = 0; // BitConverter.ToInt16(packet, o); o += i16;
and change iPacketSizeM20 = 153;
Not sure why i2c error stuff was added in the middle of 'M' payload, it was usually in debug1.

kataventos
Posts: 702
Joined: Sun Aug 28, 2011 8:14 pm
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by kataventos »

dongs wrote:To make it work with 0203 dev I had to remove I2CErrors reading
i2cErrors = 0; // BitConverter.ToInt16(packet, o); o += i16;
and change iPacketSizeM20 = 153;
Not sure why i2c error stuff was added in the middle of 'M' payload, it was usually in debug1.



Thanks,

I dont have I2C errors (debug2) debug1 is giving the baro error (normal Ithink)!

User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

kataventos wrote:
dongs wrote:To make it work with 0203 dev I had to remove I2CErrors reading
i2cErrors = 0; // BitConverter.ToInt16(packet, o); o += i16;
and change iPacketSizeM20 = 153;
Not sure why i2c error stuff was added in the middle of 'M' payload, it was usually in debug1.



Thanks,

I dont have I2C errors (debug2) debug1 is giving the baro error (normal Ithink)!


it was a decision made by alex, i just followed the multiwii core development. But it could be reasonable to add an option to fall back to pervious version of the serial protocol... I hope I will be able to push 1.01 to the repository tonight...

Noctaro
Posts: 280
Joined: Thu Sep 08, 2011 11:15 am
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by Noctaro »

hey,
i did test your new gui with yesterdays svn release and i am very happy to say,so far i have tested it everything is working as it should! Great Job!

greetz
Noc

edit:
There is one thing i thought of. I have to disconnect quad for doing mag calibration dance and forgot to press the pause button. Is there a way pause could be applied as loosing connection? (The program crashed instead)

Theelectronicguy
Posts: 49
Joined: Tue Dec 06, 2011 3:12 am

Re: Sneak preview of new WinGUI (Screenshots)

Post by Theelectronicguy »

Pretty cool! When do you release a beta?

bob4432
Posts: 51
Joined: Sat Jan 29, 2011 2:51 am
Location: USA

Re: Sneak preview of new WinGUI (Screenshots)

Post by bob4432 »

Theelectronicguy wrote:Pretty cool! When do you release a beta?



viewtopic.php?f=8&t=1172&start=50#p9049

User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

Update 1.02 is released, see topic: viewtopic.php?f=8&t=1229
Last edited by EOSBandi on Mon Feb 20, 2012 12:14 am, edited 1 time in total.

caotri
Posts: 9
Joined: Tue Apr 19, 2011 8:50 am

Re: Sneak preview of new WinGUI (Screenshots)

Post by caotri »

so nice, looking for it to be final version.
thanks.

User avatar
captaingeek
Posts: 228
Joined: Fri Jan 28, 2011 6:42 pm

Re: Sneak preview of new WinGUI (Screenshots)

Post by captaingeek »

any chance of adding another tab that will allow upload of updated firmware (over BT too)?

:)

Sven
Posts: 32
Joined: Mon Feb 27, 2012 10:11 am

Re: Sneak preview of new WinGUI (Screenshots)

Post by Sven »

Will a version for dev20120225 be released soon?
The java versions are always completely screwed on all my computers (window turns gray after half a minute or so),
so I have to rely on a good GUI release to make use of the new firmwares.

User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

Sven wrote:Will a version for dev20120225 be released soon?
The java versions are always completely screwed on all my computers (window turns gray after half a minute or so),
so I have to rely on a good GUI release to make use of the new firmwares.

1.04 supports 0225dev and all upcoming devs till 2.0 since alex agreed that serial protocol is freezed till 2.0 release...
Make sure that you create a new gui_setting.xml and select 2.0dev in the setting wizard.

Sven
Posts: 32
Joined: Mon Feb 27, 2012 10:11 am

Re: Sneak preview of new WinGUI (Screenshots)

Post by Sven »

Oops, found the new winGUI, it was hiding at a different file depository.

Now comes the fun bit of dealing with sensor orientation again. :x

User avatar
EOSBandi
Posts: 802
Joined: Sun Jun 19, 2011 11:32 am
Location: Budapest, Hungary
Contact:

Re: Sneak preview of new WinGUI (Screenshots)

Post by EOSBandi »

captaingeek wrote:any chance of adding another tab that will allow upload of updated firmware (over BT too)?

:)

Well,
unless it includes a complete arduino compiller and config manager, there is no reason to duplicate the multiwii fw upload in the gui. You are using arduino ide anyway to compile he code, so you can also upload the code with it. For supporting bootloading over BT you need a BT module witch handles DTR/RST just like the ftdi. But if you have such a module then you can use it with arduino ide also.
Regards,
Andras

Post Reply