Jump to content

Search the Community

Showing results for tags 'dataref'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General X-Plane Discussion
    • General Discussion
    • File Library Submissions
    • Help!?!
    • Communal Links
    • Screenshots
    • Videos
    • X-Plane News [Official News]
    • X-Pilot Features
  • Developers
    • Plugin Development
    • UDP Development
    • Aircraft Development
    • Scenery Development
  • Freeware Projects
    • XMidiCtrl
  • Commercial Vendors
    • 4Forces
    • Attitude Simulations
    • Hot Start
    • ITX-Designs (Formerly Icarus)
    • IXEG
    • JGX-Designs
    • JRollon
    • Leading Edge Simulations
    • Maxx-XP
    • PilotEdge
    • RealScenery
    • RealSimGear
    • Real Environment Simulations
    • TOGA Simulations
    • TorqueSim/AFM
    • Uncle Jack Simulations
    • X-Plugins
  • Miscellaneous
    • Hardware
    • Software
  • X-Plane 101
    • I'm New To X-Plane!
    • Best of the Best!
  • Workshop
    • 3D Shop
  • Add-On Reviews
    • Reviews

Categories

  • News
  • Aircraft
  • Scenery
  • Plugins
  • X-Pilot Website
  • Sales & Deals
  • General Information

Categories

  • Aircraft
    • Experimental
    • Fighters
    • General Aviation
    • Gliders
    • Heavy Metal
    • Helicopters
    • Mega-Planes
    • Seaplanes
    • VTOL
    • X-Planes
  • Scenery
    • DSF Scenery Packages
    • Objects
    • Misc Scenery Resources
  • Liveries
    • Business Aviation
    • Experimental
    • Fighters
    • General Aviation
    • Helicopters
    • Heavy Metal
    • Vintage
  • Plugins and Utilities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 6 results

  1. Hello folks, I just noticed in v 1.21 datarefs for the brakes have no effect - This used to work on previous version. I'm trying to use sim/cockpit2/controls/left_brake_ratio and sim/cockpit2/controls/right_brake_ratio and, as soon as I set them to '1', they move back to 0. However, if I use the command to brake, or a joystick axis,I see the plane braking and datarefs changing to 1. Is there another dataref to activate brakes? Thanks,
  2. Hi, i have a 3 way switch. Up: Gear lever up Down: Gear lever down Middle: Gear lefer off Works, but as soon as I address the dataref ixeg/733/gear/gear_handle_act with write access with FlyWithLua (without setting any value) I get a constant sound of the lever. Is there a different solution? This line is enough to get a constant sound loop (of course the line itself is not placed in a loop...): dataref("GEAR", "ixeg/733/gear/gear_handle_act", "writable") Thanks for reading and suggestions!
  3. Hej Guys, I have some troubles with radio frequencies modification from my cockpit driven using Arduino. If I use for example the command "sim/radios/actv_com1_coarse_up" then it works fine, but it modifies the active com1. I want to be able to modify the same side as where my encoder is situated, even if it's not the active side. If I use for example the dataref "ixeg/733/radios/radios_com1_right_mhz" and send a value between 0-19 then nothing happens. It seems to be the correct way to do this but, could this dataref be read only? The only solution I see right now, is to test which side is active and use either "sim/radios/actv_com1_coarse_up" or "sim/radios/stby_com1_coarse_up" in order to update the correct side. But I wonder if I am missing something here! Has anyone had this issue? Which Command/DataRef are you using for this? Thanks in advance for your feedback Cheers Syl20
  4. Hi, Is it possible to read the custom IXEG datarefs via UDP? I was looking at the SET DATAREF STRUCTURE which can be used to set a dataref via UDP to any value... so this should work for sending data to x-plane. But it seems as though it's not so easy to read custom datarefs from x-plane via UDP. The data output screen only allows a set list of items to be sent out via UDP. It seems as though you will have to create an SDK plugin to be able to send custom dataref values via UDP. Is this the case, or is there another way? This would be quite nice for using Arduinos etc. to be able to interface to the IXEG plane as well as for Android and IOS devices.
  5. I'm busy developing an Android app to control the CDU over the network and I can't find the dataref for the CLR key on either of the CDU's in the IXEG 737. DataRefTool is picking up all the other datarefs, but nothing for the CLR key. Thanks Edit: I got this all working by using the commands for the CLR key... I didn't realise that the ExtPlane plugin can also issue commands to X-Plane.
  6. I want to create a dataref in Gizmo. In the Gizmo API two methods are explained. Because I want to use the dataref for an algorytm I used the second method: dr_TAS = dref.getDataref("sim/flightmodel/position/true_airspeed")dr_Sigma = dref.getDataref("sim/weather/sigma")dr_EAS_C = dref.newFloat("my/custom/dataref", "my_custom_dataref_eas")function OnUpdate() EAS = dref.getFloat(dr_EAS_C) -- This one works: EAS = my_custom_dataref_eas_OnRead() -- but this give no benefit in creating a dataref.endfunction my_custom_dataref_eas_OnRead() -- calculating the Equivalent airspeed -- needed because IAS in X-Plane is writable (and windsounds do not depend on vibrating gauges) -- see formula on http://en.wikipedia.org/wiki/Equivalent_airspeed local EAS = dref.getFloat(dr_TAS) * math.sqrt(dref.getFloat(dr_Sigma)) return EASendSee function OnUpdate(). What am I doing wrong here.
×
×
  • Create New...