Page 10 of 11 FirstFirst ... 67891011 LastLast
Results 91 to 100 of 101
  1. #91
    500+ This must be a daytime job 737NUT's Avatar
    Join Date
    Feb 2006
    Location
    Indianapolis, IN
    Posts
    760
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    I use either Hitec or futaba digitals. I tried the cheap servo's and they would burn out in little use. Spend a little extra now and save money and heartache in the long run!

  2. #92
    500+ This must be a daytime job



    Join Date
    Jul 2013
    Posts
    917
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Jack

    Post deleted, as earlier enquiry was to 737NUT and not general

    David

  3. #93
    500+ This must be a daytime job Boeing 747 Flyer's Avatar
    Join Date
    Nov 2009
    Location
    England
    Posts
    635
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Quote Originally Posted by 737NUT View Post
    I use either Hitec or futaba digitals. I tried the cheap servo's and they would burn out in little use. Spend a little extra now and save money and heartache in the long run!
    Hmmm... My Etronix Servo isn't *perfectly* accurate (just did 10 Tests in a row going from min to max deflection, biggest error margin was 9 servo values, avarage was only 1 or two away from the correct value), however, it is wonderful at not burning. I have constantly thrashed it past the limits and it never fails to work!

    Furthermore, I've had my SIOC script slightly (after avaraging the results out from that 10-test run), here's the final result:

    Code:
    // *****************************************************************************
    // * Config_SIOC ver 3.7B1   -     By Manolo Vélez    -    www.opencockpits.com
    // *****************************************************************************
    // * FileName : ASIgauge.txt
    // * Date : 7/3/2010
    
    
    
    Var 0000, Value 0, name Intialization     // Set servo positions
    {
      &Servo3 = 197
    }
    
    Var 9003, name IAS, Link FSUIPC_IN, Offset $02BC, Length 4     // IAS from Sim
    {
      L0 = DIV &IAS 128
      L1 = L0 * 1.653 // Calculate Servo Slope
      L2 = L1 + 114.35 // Calculate Servo Intercept
    
    V9000 = L2
    }
    Var 9000, name Servo3, Link USB_SERVOS, Output 3, PosL 197, PosC 445, PosR 693, Type 2     // ASI gauge
    EDIT: And, as usual, it doesn't work. SIOC is completely messed up, after starting it turns the Servo to position "55", despite 197 being defined in the script. It also doesn't move in time with the Sim.

    I managed to achieve *limited* sucess with the script. At low speeds, my real life ASI is showing way too fast. At high speeds, it is the opposite, showing speeds way to slow. Pretty much the same problem as last time, and I can't figure out why, because that script looks okay?

  4. #94
    500+ This must be a daytime job Boeing 747 Flyer's Avatar
    Join Date
    Nov 2009
    Location
    England
    Posts
    635
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Heya 737NUT,

    Could you tell me which is your favourite Servo out of all of your Digital Dutabas and Hitecs?

    I just want one that is reliable and powerful, and that will work well with USBServos Software & Card.

    Thanks in advance,

    Jack

  5. #95
    500+ This must be a daytime job kiek's Avatar
    Join Date
    Jan 2007
    Location
    Netherlands
    Posts
    698
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Quote Originally Posted by Boeing 747 Flyer View Post
    EDIT: And, as usual, it doesn't work. SIOC is completely messed up, after starting it turns the Servo to position "55", despite 197 being defined in the script.
    Like I told you before: You may delete Var 0000 completely... It has no use. The init value of 197 will immediately be overwritten by the value of the IAS FSUIPC offset.

    Tip (just syntax): write
    Code:
    &Servo3 = L2
    or even better:
    Code:
    &Servo3 = L1 + 114.35
    Nico

  6. #96
    500+ This must be a daytime job Boeing 747 Flyer's Avatar
    Join Date
    Nov 2009
    Location
    England
    Posts
    635
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Hi Nico,

    I have deleted Var0000.

    Still, what is the use of defining the Left, Mid and Right points of the Servo? SIOC doesn't seem to use them. For example, it thinks 0 IAS means position 0 on the servo, despite me defining 197 in this following line:

    Code:
    Var 9000, name Servo3, Link USB_SERVOS, Output 3, PosL 210, PosC 473, PosR 735, Type 2     // ASI gauge

  7. #97
    500+ This must be a daytime job kiek's Avatar
    Join Date
    Jan 2007
    Location
    Netherlands
    Posts
    698
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    I know nothing about Servo's.

    Note that yesterday I have add a SIOC presentation (from Opencockpits) to the SIOC page of my website. I recommend to print this colourful file, take a break (or even a holiday) and study this document over and over again (from over to cover)

    Have a good Summer!

    Nico
    Last edited by kiek; 07-11-2010 at 04:34 AM.

  8. #98
    500+ This must be a daytime job Boeing 747 Flyer's Avatar
    Join Date
    Nov 2009
    Location
    England
    Posts
    635
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Thanks Nico, I will have a peek at that presentation!

    Strangely, my Servo is consistently off by 15Knots. I may try offsetting the SIOC script by 15Knots to compensate for this.

  9. #99
    500+ This must be a daytime job 737NUT's Avatar
    Join Date
    Feb 2006
    Location
    Indianapolis, IN
    Posts
    760
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Here is what i will be using from now on, it's their new design and pot life is increased tremendously!
    http://www.servocity.com/html/hs-5045hb_servo.html

    Until you get a good servo in there it will be impossible to code correctly! The servo must go to the same spot every time.

  10. #100
    500+ This must be a daytime job Boeing 747 Flyer's Avatar
    Join Date
    Nov 2009
    Location
    England
    Posts
    635
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: USBServos Software not working?

    Hello everyone,

    I have some good news.

    I have managed to find the fault behind the mysterious Servo problem. It was actually one of the gears that was to blame! It had come loose of the Servo arm and was waivering about trying to obey the SIOC rules. A quick re-application of the gear seems to have fixed the problem.

    After further testing with FSX, the biggest error margin was about 7Knots, usually only about 3-5Knots, and other times SPOT ON. I can live with these small errors, especially because in real life ASIs do vibrate about and aren't always 100% accurate.

    So, after long, long last, I can declare this project a sucess and move on to the next gauge... The VSI!

    Thanks for everyone who contributed, I wish you a happy summer,

    Until the VSI...

    Bye! (thread can be closed!)

Page 10 of 11 FirstFirst ... 67891011 LastLast

Similar Threads

  1. Replies: 11
    Last Post: 02-28-2011, 04:09 PM
  2. Real-World Aircraft Instruments interfaced to FSX via SIOC & USBServos
    By Boeing 747 Flyer in forum My Cockpit Update
    Replies: 1
    Last Post: 08-07-2010, 08:58 AM
  3. USBSERVOS Card testing
    By Tripacer in forum OpenCockpits General Discussion
    Replies: 3
    Last Post: 01-14-2009, 12:25 AM
  4. USBServos Card Testing
    By Tripacer in forum OpenCockpits General Discussion
    Replies: 1
    Last Post: 12-07-2008, 12:37 AM
  5. What are you working on?
    By Bob Reed in forum My Cockpit Update
    Replies: 21
    Last Post: 12-22-2006, 12:22 PM