<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									SimHub not receiving all telemetry from game. - Simhub General				            </title>
            <link>https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/</link>
            <description>All about SimHub!</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 06 Sep 2026 02:59:26 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: SimHub not receiving all telemetry from game.</title>
                        <link>https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6883</link>
                        <pubDate>Sun, 09 Apr 2023 08:33:11 +0000</pubDate>
                        <description><![CDATA[Cool thanks heaps for the quick reply. I might have a play around with the lua and see if I can get other stuff to work. Theoretically if I do make it find into that should come into SimHub ...]]></description>
                        <content:encoded><![CDATA[<p>Cool thanks heaps for the quick reply. I might have a play around with the lua and see if I can get other stuff to work. Theoretically if I do make it find into that should come into SimHub fine?</p>
<p> </p>
<p>*Edit* I just tried to get ChatGPT to help me and it came out with this after I pushed it too hard 🤣</p>
<pre contenteditable="false">-- Lua UDP Telemetry Script for DCS World
-- Author: OpenAI Assistant

local io = require("io")

local PIPE_NAME = "\\\\.\\pipe\\SHTelemetry"

local function send(message)
    local file = io.open(PIPE_NAME, "w")
    if file then
        file:write(message)
        file:flush()
        file:close()
    end
end

local function LuaExportStart()
    -- You can add any initialization code here
end

local function LuaExportBeforeNextFrame()
    -- Prepare the data
    local altBar = LoGetAltitudeAboveSeaLevel()
    local altRad = LoGetAltitudeAboveGroundLevel()
    local pitch, bank, yaw = LoGetADIPitchBankYaw()
    local engine = LoGetEngineInfo()
    local current_time = LoGetModelTime()

    -- Format the data
    local output = string.format("altBar=%.2f,altRad=%.2f,pitch=%.2f,bank=%.2f,yaw=%.2f,rpm=%.2f,fuel=%.2f,time=%.2f",
        altBar, altRad, pitch, bank, yaw, engine.RPM.left, engine.FuelConsumption.left, current_time)

    -- Send the data
    send(output)
end

local function LuaExportStop()
    -- You can add any cleanup code here
end

-- We only need to modify the LuaExportBeforeNextFrame function, so we'll keep the rest of the event handlers as they are.
LuaExportActivityNextEvent = {}
function LuaExportActivityNextEvent(t)
    local tNext = t

    LuaExportBeforeNextFrame()
    tNext = tNext + 0.1 -- Set the next event to occur in 0.1 seconds (10 updates per second)

    return tNext
end

LuaExportStart()
</pre>]]></content:encoded>
						                            <category domain="https://www.simhubdash.com/community-2/simhub-support/">Simhub General</category>                        <dc:creator>Eclipse1943</dc:creator>
                        <guid isPermaLink="true">https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6883</guid>
                    </item>
				                    <item>
                        <title>RE: SimHub not receiving all telemetry from game.</title>
                        <link>https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6881</link>
                        <pubDate>Sun, 09 Apr 2023 06:31:49 +0000</pubDate>
                        <description><![CDATA[Hi ! FS support is a basic support as you pointed simhub is not commonly used for such games so I did extract some basics channels to get a basic dashboard shakers effects and wind working. ...]]></description>
                        <content:encoded><![CDATA[<p>Hi ! FS support is a basic support as you pointed simhub is not commonly used for such games so I did extract some basics channels to get a basic dashboard shakers effects and wind working. Bit it's really out of the simhub track to exploit properly more "farming" dedicated data.</p>]]></content:encoded>
						                            <category domain="https://www.simhubdash.com/community-2/simhub-support/">Simhub General</category>                        <dc:creator>Wotever</dc:creator>
                        <guid isPermaLink="true">https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6881</guid>
                    </item>
				                    <item>
                        <title>SimHub not receiving all telemetry from game.</title>
                        <link>https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6880</link>
                        <pubDate>Sat, 08 Apr 2023 23:07:46 +0000</pubDate>
                        <description><![CDATA[So I have been trying to make a dash for Farming Simulator 2022 but I&#039;m not receiving all the telemetry. The only stuff that seems to be making it to SimHub is RPM, Speed and Fuel (maybe a f...]]></description>
                        <content:encoded><![CDATA[<p>So I have been trying to make a dash for Farming Simulator 2022 but I'm not receiving all the telemetry. The only stuff that seems to be making it to SimHub is RPM, Speed and Fuel (maybe a few other things). A good example of things I'm not getting is Money or CruiseControl Speed/State.</p>
<p>Things I have checked and tried:</p>
<ul>
<li>Plugin is installed and running. No errors in logs.</li>
<li>Game is 'running' with blue dot in SimHub.</li>
<li>I checked FS2019 as well since the plugin lua is the same and had similar issues.</li>
<li>With other mods such as Stryder or one off GitHub, the telemetry works fine.</li>
<li>Probably other things</li>
<li>No issues in SimHub logs that I could see</li>
</ul>
<p> </p>
<p>Any ideas? I'd appreciate it a lot if anyone has FS 19/22 and is willing to have a quick squiz.</p>
<p>Also, is there anywhere that I can view only the telemetry that is being piped from the game?</p>
<p>I know SimHub isn't a common use for Farming Simulator, but it should be. Trying to use the software most commonly used for creating a dash in FS made me want to throw my computer out the window.</p>
<p>If people think this is a bug, I'll submit a bug report on GitHub.</p>
<p>Thanks!</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.simhubdash.com/community-2/simhub-support/">Simhub General</category>                        <dc:creator>Eclipse1943</dc:creator>
                        <guid isPermaLink="true">https://www.simhubdash.com/community-2/simhub-support/simhub-not-receiving-all-telemetry-from-game/#post-6880</guid>
                    </item>
							        </channel>
        </rss>
		