
Register Login Home Latest Latest in Freeware Latest in Aircraft Latest in Airport Latest in Hardware Latest in Scenery Latest in Utility Latest in Living World Latest in Mission Simulator Microsoft Flight Simulator X-Plane 12 Prepar3D v5 DCS Infinite Flight Microsoft Flight Simulator on Xbox Prepar3D v4 X-Plane 11 Flight Simulator X Prepar3D 32-Bit Reviews Opinion First Looks Head to Head Brief Originals Interview Editorial Educational Promotions Giveaways Archive Merch Home - News - Thrustmaster Announces T.Flight Hotas 5 MSFS Edition
Thrustmaster releases their latest version of their entry-level joystick.
Posted: 21-May-2026 @ 03:01z Hardware developer Thrustmaster recently took to their Facebook page to unveil the T.Flight Hotas 5 Microsoft Flight Simulator Edition, a refreshed version of the Hotas 4 designed with MSFS users in mind.
Rather than undergoing a full redesign, the Hotas 5 is a revised iteration of the Hotas 4, focusing primarily on visual and minor functional updates. Like its predecessor, the Hotas 5 includes a detachable throttle, twist-rudder flight stick, and plug-and-play support for PC and the latest PlayStation consoles. Overall, the Hotas 5 remains positioned in the entry-level flight simulation category, aimed at new users looking for accessible hardware to control core flight systems without the a high price tag.
The key difference with the Hotas 5 compared to the Hotas 4 is the updated MSFS branding and refined button layout. In total, the unit features 14 buttons, 1 trigger, and 1 hat switch. Thrustmaster has also added additional inputs on the throttle base, aimed at improving in-sim navigation and profile switching. However, the underlying control systems and axes remain unchanged from the Hotas 4.
You can now pre-order the Thrustmaster T.Flight Hotas 5 Microsoft Flight Simulator Edition via the Thrustmaster website for $109.99.
Feedback Devan Pandya Content Writer Ever since being introduced to FS9 and FSX at age 3, Devan has been an avid avgeek and flight simmer. He continues to pursue this passion by studying for his private pilot license and creating aviation social media content as "The757Avgeek." Be nice, kind and courteous. Share your thoughts, engage in conversation and remember there's a human on the other side of the screen. Keep the chat going, but without the attacks. Read our community guidelines . Show Comments Read More in MSFS , MSFS 2024 , MSFS PS5 GSX Receives Significant Update to 4.0.0 20 May 2026 - One of the largest updates for GSX is here, with all new features, bug fixes, and more. News MSFS MSFS 2024 iniBuilds Announces Zakynthos Airport for MSFS 20 May 2026 - iniBuilds has announced Zakynthos, bringing the popular Greek island destination to life in the sim. News MSFS 2024 Bringing an Airport to Life – Episode 2: Landside Survey 20 May 2026 - In Episode 2, we begin the landside airport survey. You will see Mir, Thomas and Marcus grab their camera equipment and begin their journey of taking thousands of pictures. News MSFS 2024 Navigraph Expands Academy with New Course 19 May 2026 - Navigraph expands Academy with a new course. News MSFS MSFS 2024 Miltech Announces Release Date for Stratoware x Miltech Simulations MBB Bo 105 for MSFS 2024 18 May 2026 - Stratoware x Miltech Simulations MBB Bo 105 set to release this Friday. News MSFS 2024 Celebrating flight simulation since 2016. © FSElite Media LLC 2016 - 2026 Flight Sim Content Flight Sim News Flight Sim Reviews Flight Sim Videos Flight Sim Hardware Flight Sim Trailers Discover More Microsoft Flight Simulator News X-Plane 12 News Prepar3D v5 News MSFS on Xbox News DCS News Infinite Flight News New Aircraft New Airports Original Content Help Links Hangar Contact Submit News Crew myFSElite Terms Privacy Status Ad Manager 100% of your tip goes to Devan Pandya Your support keeps us motivated to continue providing great flight simulator content. Tip with PayPal my FSElite Hey, | ID: Account Settings Give us feedback on Thrustmaster Announces T.Flight Hotas 5 MSFS Edition Your feedback helps ensure our content remains accurate, relevant and in-keeping with our Community Charter. Feedback Type * General Spelling or Grammar Incorrect or Outdated Info Other (Let us know) Tell Us More * Be descriptive (min 20 characters), but also concise (max 200 characters). Your Name * Let us know who we're talking to. Your Email * Send Feedback Hangar Contact Submit News Theme Register Login (function (undefined) {let scriptOptions={"_localizedStrings":{"redirect_overlay_title":"Hold On","redirect_overlay_text":"You are being redirected to another page, it may take a few seconds.","webview_notification_text":"The selected provider doesn't support embedded browsers!"},"_targetWindow":"prefer-popup","_redirectOverlay":"overlay-with-spinner-and-message","_unsupportedWebviewBehavior":""}; /** * Used when Cross-Origin-Opener-Policy blocked the access to the opener. We can't have a reference of the opened windows, so we should attempt to refresh only the windows that has opened popups. */ window._nslHasOpenedPopup = false; window._nslWebViewNoticeElement = null; window.NSLPopup = function (url, title, w, h) { /** * Cross-Origin-Opener-Policy blocked the access to the opener */ if (typeof BroadcastChannel === "function") { const _nslLoginBroadCastChannel = new BroadcastChannel('nsl_login_broadcast_channel'); _nslLoginBroadCastChannel.onmessage = (event) => { if (window?._nslHasOpenedPopup && event.data?.action === 'redirect') { window._nslHasOpenedPopup = false; const url = event.data?.href; _nslLoginBroadCastChannel.close(); if (typeof window.nslRedirect === 'function') { window.nslRedirect(url); } else { window.opener.location = url; } } }; } const userAgent = navigator.userAgent, mobile = function () { return /\b(iPhone|iP[ao]d)/.test(userAgent) || /\b(iP[ao]d)/.test(userAgent) || /Android/i.test(userAgent) || /Mobile/i.test(userAgent); }, screenX = window.screenX !== undefined ? window.screenX : window.screenLeft, screenY = window.screenY !== undefined ? window.screenY : window.screenTop, outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth, outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22, targetWidth = mobile() ? null : w, targetHeight = mobile() ? null : h, left = parseInt(screenX + (outerWidth - targetWidth) / 2, 10), right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10), features = []; if (targetWidth !== null) { features.push('width=' + targetWidth); } if (targetHeight !== null) { features.push('height=' + targetHeight); } features.push('left=' + left); features.push('top=' + right); features.push('scrollbars=1'); const newWindow = window.open(url, title, features.join(',')); if (window.focus) { newWindow.focus(); } window._nslHasOpenedPopup = true; return newWindow; }; let isWebView = null; function checkWebView() { if (isWebView === null) { function _detectOS(ua) { if (/Android/.test(ua)) { return "Android"; } else if (/iPhone|iPad|iPod/.test(ua)) { return "iOS"; } else if (/Windows/.test(ua)) { return "Windows"; } else if (/Mac OS X/.test(ua)) { return "Mac"; } else if (/CrOS/.test(ua)) { return "Chrome OS"; } else if (/Firefox/.test(ua)) { return "Firefox OS"; } return ""; } function _detectBrowser(ua) { let android = /Android/.test(ua); if (/Opera Mini/.test(ua) || / OPR/.test(ua) || / OPT/.test(ua)) { return "Opera"; } else if (/CriOS/.test(ua)) { return "Chrome for iOS"; } else if (/Edge/.test(ua)) { return "Edge"; } else if (android && /Silk\//.test(ua)) { return "Silk"; } else if (/Chrome/.test(ua)) { return "Chrome"; } else if (/Firefox/.test(ua)) { return "Firefox"; } else if (android) { return "AOSP"; } else if (/MSIE|Trident/.test(ua)) { return "IE"; } else if (/Safari\//.test(ua)) { return "Safari"; } else if (/AppleWebKit/.test(ua)) { return "WebKit"; } return ""; } function _detectBrowserVersion(ua, browser) { if (browser === "Opera") { return /Opera Mini/.test(ua) ? _getVersion(ua, "Opera Mini/") : / OPR/.test(ua) ? _getVersion(ua, " OPR/") : _getVersion(ua, " OPT/"); } else if (browser === "Chrome for iOS") { return _getVersion(ua, "CriOS/"); } else if (browser === "Edge") { return _getVersion(ua, "Edge/"); } else if (browser === "Chrome") { return _getVersion(ua, "Chrome/"); } else if (browser === "Firefox") { return _getVersion(ua, "Firefox/"); } else if (browser === "Silk") { return _getVersion(ua, "Silk/"); } else if (browser === "AOSP") { return _getVersion(ua, "Version/"); } else if (browser === "IE") { return /IEMobile/.test(ua) ? _getVersion(ua, "IEMobile/") : /MSIE/.test(ua) ? _getVersion(ua, "MSIE ") : _getVersion(ua, "rv:"); } else if (browser === "Safari") { return _getVersion(ua, "Version/"); } else if (browser === "WebKit") { return _getVersion(ua, "WebKit/"); } return "0.0.0"; } function _getVersion(ua, token) { try { return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\w\.]/)[0]); } catch (o_O) { } return "0.0.0"; } function _normalizeSemverString(version) { const ary = version.split(/[\._]/); return (parseInt(ary[0], 10) || 0) + "." + (parseInt(ary[1], 10) || 0) + "." + (parseInt(ary[2], 10) || 0); } function _isWebView(ua, os, browser, version, options) { switch (os + browser) { case "iOSSafari": return false; case "iOSWebKit": return _isWebView_iOS(options); case "AndroidAOSP": return false; case "AndroidChrome": return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\d{2}\.0\.0/.test(version) ? true : _isWebView_Android(options); } return false; } function _isWebView_iOS(options) { const document = (window["document"] || {}); if ("WEB_VIEW" in options) { return options["WEB_VIEW"]; } return !("fullscreenEnabled" in document || "webkitFullscreenEnabled" in document || false); } function _isWebView_Android(options) { if ("WEB_VIEW" in options) { return options["WEB_VIEW"]; } return !("requestFileSystem" in window || "webkitRequestFileSystem" in window || false); } const options = {}, nav = window.navigator || {}, ua = nav.userAgent || "", os = _detectOS(ua), browser = _detectBrowser(ua), browserVersion = _detectBrowserVersion(ua, browser); isWebView = _isWebView(ua, os, browser, browserVersion, options); } return isWebView; } function isAllowedWebViewForUserAgent(provider) { const facebookAllowedWebViews = [ 'Instagram', 'FBAV', 'FBAN' ]; let whitelist = []; if (provider && provider === 'facebook') { whitelist = facebookAllowedWebViews; } const nav = window.navigator || {}, ua = nav.userAgent || ""; if (whitelist.length && ua.match(new RegExp(whitelist.join('|')))) { return true; } return false; } function disableButtonInWebView(providerButtonElement) { if (providerButtonElement) { providerButtonElement.classList.add('nsl-disabled-provider'); providerButtonElement.setAttribute('href', '#'); providerButtonElement.addEventListener('pointerdown', (e) => { if (!window._nslWebViewNoticeElement) { window._nslWebViewNoticeElement = document.createElement('div'); window._nslWebViewNoticeElement.id = "nsl-notices-fallback"; window._nslWebViewNoticeElement.addEventListener('pointerdown', function (e) { this.parentNode.removeChild(this); window._nslWebViewNoticeElement = null; }); const webviewNoticeHTML = ' ' + scriptOptions._localizedStrings.webview_notification_text + '
" + scriptOptions._localizedStrings.redirect_overlay_title + "
" + scriptOptions._localizedStrings.redirect_overlay_text + "
Créditos da imagem: t Latest in Hardware Latest in Scenery Latest in Utility Latest in Living World
Nenhum comentário:
Postar um comentário