Search found 14 matches

by klaudius666
Wed Mar 20, 2013 5:13 pm
Forum: Software development
Topic: MultiWii EZ-GUI
Replies: 1434
Views: 636245

Re: MultiWii EZ-GUI

Hi. And thanks for this android software.

Is EZ GUI supporting the new Multiwii 2.2 release ?
by klaudius666
Tue Feb 26, 2013 9:44 pm
Forum: Software development
Topic: Release 2.2 is coming
Replies: 167
Views: 57169

Re: Release 2.2 is coming

Hi

Please, Just for my curiosity about arduino compilator optim

with uint8 toto
if i write :

a=toto/8

does the compiler optimize and do unsigned shifting of 3 as 8 is a power of two ?

same question for int8, it does signed shift ?
by klaudius666
Thu Feb 21, 2013 11:14 am
Forum: Software development
Topic: Super simple gimbal improvement
Replies: 15
Views: 8658

Re: Super simple gimbal improvement

ok. thanks. it's clear now.
by klaudius666
Tue Feb 19, 2013 9:48 pm
Forum: Software development
Topic: Super simple gimbal improvement
Replies: 15
Views: 8658

Re: Super simple gimbal improvement

Hi shikra. I'll try your suggestion. you mean a filter like this ? i think it will generate some steps ? (if you have some wiki about it ...) delta=newvalue-oldvalue if abs (delta)< threethold { if delta>0 newvalue+=step else newvalue-=step } else { newvalue+=newvalue * (1-filterratio)+filterratio*o...
by klaudius666
Tue Feb 12, 2013 12:21 am
Forum: Software development
Topic: Super simple gimbal improvement
Replies: 15
Views: 8658

Super simple gimbal improvement

Hi. My numeric servos where a little noisy and introduced some micro vibration when using super simple gimbal system. m tried this to solve it by updating output.ino. seems working pretty well on my configuration. if someone try this, please let me know if it's working too. http://www.rcgroups.com/f...
by klaudius666
Thu Nov 08, 2012 11:52 pm
Forum: Software development
Topic: GPS integration
Replies: 1724
Views: 885833

Re: GPS integration

Hi.

Tested Multiwii althold and RTH la week for first time with all default settings. (v2.1 + CN06 V2 + I2C)

Worked very very well !

Many greetings to multiwii dev team for this feature ! and eosbandi too !

Best regards
by klaudius666
Tue Apr 10, 2012 7:08 pm
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

For information i Disassembled my crius LCD :

the LCD is a LCM1602C V2.0

the serial to LCD if managed by an AMTEL MEGA48PA

....
by klaudius666
Sun Apr 08, 2012 4:56 pm
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

the minimum to display on LCD are : setline(n); LcdPrint(); Looked at documentation of sparfun serial LCD cause crius lcd seem to be a clone of this. Perhaps my LCD is bad configured.... there are special command to set number of line and number of char per line, and it's possible to reset baud rate...
by klaudius666
Sun Apr 08, 2012 1:35 pm
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

Hi.

Looked for a doc for crius LCD.... but none....
by klaudius666
Sun Apr 08, 2012 10:54 am
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

not working even with 023 arduino IDE.... tested this code : for(uint8_t i='0';i<255;i++) { // // LCDprintChar("\r\n"); LCDprint(0xFE); LCDprint(0x01) ; //LCDprint(0xFE); //LCDprint(48); delay(200); line1[0]=i; line1[1]=0; LCDprintChar(line1); delay(500); } command 0xFE is not recognised.....
by klaudius666
Sun Apr 08, 2012 7:45 am
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

I'll try to compile 2.0 with arduino 023... i'll give you news about the result...
by klaudius666
Fri Apr 06, 2012 11:14 pm
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

Re: CRIUS LCD BUG WITH 2.0

I read on some forum that there are some problem with lastest arduino 1.0 with some serial LCD... i'll try to compile MW2.0 with arduino 023 just to see..... the strange thing is that it was working on 1.9 and not noticable change in 2.0.... more strange the sparkfun LCD work (more robust serial rea...
by klaudius666
Fri Apr 06, 2012 11:37 am
Forum: Software development
Topic: CRIUS LCD BUG WITH 2.0
Replies: 53
Views: 24729

CRIUS LCD BUG WITH 2.0

Hi All. first of all, many greetings for the developpers of Multiwii, it's a good piece of code ! I'm new to multiwii world and arduino programmation, it's cool, i love flying machine and programmation . I ve build a mini Xquad and all is working fine. amazing flying skills. my actual configuration ...
by klaudius666
Thu Apr 05, 2012 8:20 pm
Forum: Software development
Topic: MultiWii 2.0 bug report
Replies: 99
Views: 45574

Re: MultiWii 2.0 bug report

Same problem on Crius LCD with multiwii 2.0.
Looked at difference between 1.9 and 2.0 lcd code, but there are really too many change.
Perhaps a bad serial transmission, or character set problem ?

If someone give me some suggestion i can recompile and test for some solutions