Xplanecdu android как настроить

Xplanecdu android как настроить

A plugin for X-Plane and other simulators that allows commanding the simulation from external programs through an easy-to-use TCP protocol.

Current version 1003 (set in tcpserver.h, if you make changes!)

  • X-Plane 9, 10 & 11 — native support. X-Plane 11 currently only tested.
  • Condor soaring simulator 1 and 2
  • FlightGear — basic support via Transformer (see later)

NOTE: ExtPlane-transformer (support for other sims except X-Plane) is not available in github releases, as building it requires Qt 5.8 and the ci container has older one.. This will eventually be fixed.

  • Multiple concurrent connections
  • Set and get datarefs
  • Support for different dataref types: int, float, double, int[], float[], data
  • Simulate key and button presses
  • Execute commands
  • Load situations
  • High-performance UDP option
  • MQTT protocol for easy integration to external systems such as Node Red
  • Free & open source under GPLv3
  • Client libraries available for Qt (c++), Java and C#

Note: X-Plane has UDP interface that can be used to do lot of things ExtPlane normally would do. See https://github.com/dotsha747/libXPlane-UDP-Client for a c++ client for the UDP interface.

ExtPlane-Transformer is an application that works as ExtPlane server and can transform output from other simulators to ExtPlane protocol.

Articles and guides

  • Ville Ranki’s blog: ExtPlane-panel (English, 2010)
    • http://coshacks.blogspot.fi/2010/12/extplane-panel-for-x-plane.html
  • Nicolas Montarnal’s blog: Simulateur de vol: cockpit pour Xplane (French, 2015)
    • http://nicolasmontarnal.blogspot.fr/2015/10/x-plane-mise-en-place-dinstruments-de.html
  • Up to date Linux & windows versions
    • GitHub releases page: https://github.com/vranki/ExtPlane/releases/
  • Older version: Linux, Windows, OS-X (32bit & 64bit), 8MB
    • https://github.com/dankrusi/ExtPlane-Panel/releases/tag/v0.1

This is a fat plugin — just copy «extplane» directory under X-Plane/Resources/plugins.

Start X-Plane. You should see ExtPlane menu entry in plugins menu.

ExtPlane uses the Qt Framework for cross-platform compatibility. Before building you’ll need to setup Qt 5 or greater to compile. You’ll also need to check out the X-Plane SDK (http://www.xsquawkbox.net/xpsdk/mediawiki/Download) to the directory next to the ExtPlane directory. The X-Plane SDK can be either at

/SDK or ../SDK or ../XPlaneSDK relative to the ExtPlane directory.

The requirements for ExtPlane are as follows:

  • C++ Toolchain
  • Qt Framework 5+
  • X-Plane SDK 3.0+

If you have docker (should work on linux & mac) you can build linux & windows binaries.

You should end up with extplane-transformer.zip and extplane-plugin.zip with both linux & windows versions inside.

After the build

A fat plugin will be in extplane-plugin/extplane. It will contain platform specific plugins you have built. For example after building linux & windows plugins it should look like this:

You can copy the whole directory to XPlane’s plugin directory:

Cross-compile to Windows from Linux

This is possible using mxe cross-compilation tool. See file scripts/cross-compile-win64-from-lin.sh for instructions.

Launch X-Plane in console and observe the output. You should see something like: ExtPlane-Plugin: Listening on port 51000 . All console output from Ext-Plane will start with ExtPlane-Plugin . Open another console and run telnet localhost 51000 . Wait until you see line EXTPLANE 1 and EXTPLANE-VERSION NNNNN . Then try typing the following commands:

The protocol uses a simple TCP socket connection to port 51000. Commands and replies are sent as text strings as defined below.

  • sub :[modifiers] [accuracy] Subscribe to dataref, with optional accuracy.
  • unsub Unsubscribe dataref.
  • set Set dataref to value. Dataref must be subscribed first.
  • get Get dataref value once, then unsubscribe.

With accuracy you can decide how much the dataref’s value can change before a update is sent. Set it to as large value as possible to maximize frame rate and minimize network traffic. For data datarefs, the accuracy represents the update interval in milliseconds.

Modifiers is a comma-separated list of strings that can modify behavior of dataref. See example on data dataref.

For example, to subscribe to the indicated heading with an accuracy of 10 degrees, send

If you want to set a dataref which supports writing, you can send the following:

Array datarefs can be set the same way. You can give less values than the dataref holds or skip some values. For example this sets full throttle for engines 1 & 2:

This sets full throttle to engine 2:

Note: subscribe to array datarefs with full ref name without indices:

High-performance UDP output

ExtPlane supports tight UDP protocol for basic dataref types (int, float, double) from simulator to client. Add modifier udp to ref name to request it in UDP. UDP datarefs are sent every flight loop using lightweight protocol.

See this file for details.

ExtPlane has experimental MQTT protocol support using Mosquitto library.

See this file for details.

Keys and Buttons

  • key Create a command key press.
  • but Press down an button.
  • rel Release button pressed using «but» command.

List of key and button id’s can be found at: http://www.xsquawkbox.net/xpsdk/mediawiki/XPLMUtilities Note that the key and button id’s are numbers, not names. X-Plane does not provide a way to lookup keys or buttons by name.

  • ** cmd once ** Execute command. It begins and ends immediately.
  • ** cmd begin ** Begin execution of command. Then it will be «held down».
  • ** cmd end ** Stop execution of command, that was started before.

Command identifiers are strings that look like datarefs.

  • sit «« situation file location relative to XPlane root folder
    (e.g., sit «Output/situations/SampleSit.sit» )
  • fms_wpt_entry id,latitude,longitude,altitude Inserts waypoint to FMC. (e.g., «fms_wpt_entry 1,50.0267,8.51,32000»)
  • fms_clear_entries Clears all entries in FMC.
  • fms_set_dest index Set destination waypoint the FMS is flying the aircraft toward.
  • disconnect Disconnect the TCP socket.
  • extplane-set Set ExtPlane setting

Supported settings are:

  • update_interval How often ExtPlane should update its data from X-Plane, in seconds. Use as high value as possible here for best performance. For example 0.16 would mean 60Hz, 0.33 = 30Hz, 0.1 = 10Hz etc.. Must be a positive float. Default is 0.33.
  • EXTPLANE Sent when connected. Protocol is currently 1.
  • EXTPLANE-VERSION Sent when connected. Feature version integer, which is incremented with each new bug fix or feature.
  • CLIENT-ID Client ID used with UDP protocol
  • EXTPLANE-WARNING Show warning message for developer and/or user
  • u Dataref has changed in value based on accuracy.
    • Types may be i (int), f (float), d (double), ia (int array), fa (float array), or b (data).

The value for EXTPLANE-VERSION is defined in extplane-server/tcpserver.h. It is an integer and should be incremented each time new features are added or bugs are fixed. The client is then able to check if the version is new enough, and can warn the user if the plugin is out of date.

Int/Float Array Datarefs

Example output (a float array, size 4):

Data datarefs output data in base64:

Use modifier «string» to output data as text (make sure it’s really printable):

Currently only string data datarefs can be set. Remember to use quotes to set values:

ExtPlane plugin outputs some log to stdout, so if you have problems with the plugin, start X-Plane in console and look for any output starting with ExtPlane-Plugin .

ExtPlane can provide custom datarefs which simplify some common tasks or create a wrapper for X-Plane SDK API calls which cannot be accessed through datarefs.

  • extplane/navdata/20km
    • Provides a list of nav aids within a 20km range of the aircraft’s position.
    • When this dataref is first accessed, ExtPlane will create a spatial database of all registered nav aids by using the XPLM NavAid APIs (

    400ms). This then allows for a performant ( ID:TYPE:LAT:LON:LOCALX:LOCALZ:HEIGHT:FREQ:HEAD:NAME .

  • For example, the nav aid for KSEA might look like this: KSEA:1:47.4475:-122.308:14461.6:-211.06:131.978:0:0:Seattle Tacoma Intl
  • extplane/navdata/100km
    • Provides a list of nav aids within a 100km range of the aircraft’s position.
  • extplane/atc/124thatc/latest
    • Provides the latest ATC communication as a string from the 124th ATC plugin.
  • Client libraries can be found in the client directory. Currently only a Qt client library is provided. Creating a client for ExtPlane is pretty easy. If you create one, please add it to the client directory.

    Always group headers in a meaningful format (ie all Qt headers should be grouped together, and all ExtPlane headers grouped together). In addition, make sure that headers are always fully relative (ie use ../util/header.h instead of util/header.h ). This is required to build across all platforms.

    When writing code which uses new features currently not implemented, always make sure to first try to use Qt cross-platform classes and libraries. When using platform dependent code, make sure to #ifdef the sections of code which will only work on a specific platform. You can use standard Qt defines, or additional defines such as TERMIOS_AVAIALABLE to help with this.

    Creating new data sources to support simulators

    Look at class DataSource. You’ll need to subclass it and implement any virtual functions missing. The functions are documented in the source. You’ll need to do a conversion between X-Plane dataref and the simulator’s own value presentations. Usually they area easy to do but complex stuff such as navigation may be impossible to do with common API.

    When you have an implementation of a DataSource, add it to ExtPlaneTransformer class implementation. Then it should be available in the GUI.

    To create a custom GUI for the source, create a QML file named datasources/DataSource[sourcename].qml. This is not mandatory.

    See the existing datasources for examples. Thanks for contributing and make a github pull request when you’re ready.

    Use GitHub’s issue tracker to report bugs or feature requests.

    Источник

    Как запустить проект Android studio на телефоне

    Если вы следовали предыдущему уроку для создания «Hello World» Android проекта, он уже включал в себя набор исходных файлов, позволяющих сразу запустить приложение.

    Откроется окно выбора подключенного реального устройства или эмулятора. Android Studio устанавливает приложение на выбранное устройство и запускает его.

    Подготовка к запуску

    Перед запуском вашего приложения, вы должны быть осведомлены о нескольких каталогах и файлах в Android проекте:

    Откройте один из файлов вашего проекта и нажмите Run app на панели инструментов. Или нажмите комбинацию клавиш Shift+F10.

    Как вы запускаете ваше приложение зависит от двух вещей: есть ли у вас реальное Android устройство и используете ли вы Android Studio или Eclipse. Этот урок покажет вам, как установить и запустить свое приложение на реальном устройстве и на Android эмуляторе, и в обоих случаях с помощью Eclipse или инструментов командной строки.

    «hello world» работает на вашем устройстве! Можно переходить к следующему уроку.

    3. На экране «Select Hardware» («Выбор оборудования») выберите телефонное устройство, например «Pixel», а затем нажмите «Далее» (Next).

    Запуск на эмуляторе

    Android Studio устанавливает приложение на подключенное устройство и запускает его.

    В Android Studio щелкните модуль приложения в окне проекта и выберите «Выполнить»-> «Выполнить» (Run -> Run) (или «Выполнить» на панели инструментов).
    В окне «Выбор места развертывания» выберите свое устройство и нажмите «ОК».

    Запустите приложение на эмуляторе следующим образом:

    Всё тоже самое, что и в случае запуска на эмуляторе. Откройте в Android Studio наш проект, нажмите на зелёный треугольник, но в появившемся окне выбора устройства выберите ваш девайс.

    Android Debug Bridge (ADB) является универсальным инструментом командной строки, который способствует взаимодействию между средой разработки, в нашем случае Android Studio, и AVD-эмуляторами или физическими Android-устройствами для возможности запуска и отладки приложений.

    Теперь следует обновить драйвер. Подключите девайс к компьютеру, перейдите в Панель управления -> Оборудование и звук -> Диспетчер устройств найдите своё устройство. Щёлкните правой клавишей по своему устройству, чтобы открыть контекстное меню и выберите «Обновить драйверы. «. Драйвер можно найти в директории sdk в подпапке extrasgoogleusb_driver.

    Как проверить правильность настроек ADB?

    Должен появится список наподобие этого:

    При настройке Windows, во-первых, убедитесь, что у вас установлен Google USB Driver. Зайдите в SDK Manager в раздел Extras и найдите Google USB Driver, установите его в случае необходимости.

    Целью данной главы является написание минимального приложение под Android. Но мы никогда не будем точно знать, смогли ли мы написать нечто работоспособное, не попробовав запустить его на реальном устройстве. Этим мы и займёмся в этой статье.

    Для того, чтобы использовать ADB с устройством, подключенным по USB, необходимо разрешить USB-отладку в системных настройках телефона или планшета в разделе «Параметры разработчика» (название может отличаться). На некоторых устройствах этот раздел по умолчанию скрыт. Рассмотрим шаги в случае, когда нет нужного раздела настроек.

    +7 (499) 444-90-36 Отдел заботы о студентах

    Москва, Ленинский проспект, дом 6, строение 20

    Подробнее

    Общие правила
    для Android-приложений

    Пользуясь нашим сайтом, вы соглашаетесь с тем, что мы используем cookies 🍪

    Оказывается, с помощью простого ssh-туннеля (одна простая инструкция в командной строке) вы можете «связать» adb на вашем локальном компьютере и на удаленном сервере, так что ваше устройство будет напрямую подключено к удаленному серверу и отображаться на удаленной Android Студия как обычно.

    Работаю с Jetpack Compose на iPad Pro

    Projector все еще находятся на ранней стадии развития, но мне не терпится увидеть, как они будут развиваться.

    А как насчет развертывания приложений на устройстве и отладки?

    Конечно, вы никогда не станете программировать на телефоне, но это доказывает, что устройство не имеет значения. Если у него есть браузер, вы можете использовать его для программирования. Это все меняет!

    Итак, я начал искать альтернативы. Как я могу работать над своими Android-проектами, не превращая ноутбук в печь для обжига? Естественный ответ — запускать нагруженные вещи в облаке.

    Мой личный ноутбук, четырехлетний Razer Blade с 16 Гб оперативной памяти, начинал ВЕШАТЬСЯ, как только я открывал в Android Studio один из моих личных проектов с несколькими модулями. Кулеры дули громче, чем когда я играл в 3D-игры, и это сводило меня с ума.

    Нажатие кнопки «запустить» в моем браузере запускает сборку на удаленном сервере, которая затем передается в виде APK через ssh на мой ноутбук, а затем через Wi-Fi на мое устройство. В какие времена мы живем, ребята!

    Для этого нужно подключить Android устройство к компьютеру с запущенной Android Studio в режиме отладки по USB. Включить отладку можно в настройках, в особой вкладке для разработчиков. А вкладка для разработчиков обычно скрыта от лишних глаз и в MIUI открывается после 10 нажатий на версию MIUI в пункте меню О устройстве. В вашей прошивке это все может немного отличаться, но у гугла есть все ответы.

    Но до использования виртуальных устройств — нужно их создать. Для этого переходим в AVD Manager:

    Физическое устройство

    Как видите, все работает и виртуальный пиксель появился в списке устройств (а мой ноут начал издавать странные звуки).

    Его уже можно запускать! Жмякаем на кнопку PLAY (треугольник такой, беленький у меня) и ждем пока все загрузиться.

    И открывается окно выбора устройства для эмуляции

    После установки драйверов, подключите по USB свой аппарат к компьютеру. Все нужные настройки запустятся и автоматически установятся.

    Эта статья подойдет вам в 2-х основных случаях:

    В уроке по настройке Android Studio были показаны основные шаги по созданию Android-эмулятора для тестирования созданных приложений. Использование эмулятора, конечно, довольно удобно, но лишь в том случае, если у вас довольно мощный компьютер и загрузка эмулятора, а также его работа не заминают уйму времени. Но не всем везет иметь такие машины-монстры, поэтому в данной статье я расскажу о довольно годном способе тестирования своих работ в Android Studio с помощью реального подключенного устройства.

    Стоит также отметить, что этот способ может быть полезен и обладателям производительных компьютеров, ведь тестирование на эмуляторе — это одно, а пронаблюдать работу приложения на настоящем смартфоне — совсем другое.

    приложение установиться и запуститься на подключенном устройстве.

    2) У вас завалялся старенький Android-смартфон и вы не знаете куда его деть (дарить/выбрасывать жалко).

    Итак, для того чтобы подключить смартфон к Android Studio в первую очередь понадобиться установить нужный набор драйверов. Как правило, мучения со стандартным набором драйверов часто ни к чему не приведут, поэтому рекомендую сразу качать вот этот файл (не боись — это не вирус, хоть антивирус и ругается) и, предварительно удалив старые драйвера, установить этот файл (во время установки телефон лучше не подключать).

    А теперь более подробно.

    Далее ждем обновления файлов проекта (“построение билда”):

    как создать сайт на wordpress, настроить и оптимизировать wordpress

    1. Запускаем приложение в Android Studio:
    Для этого нужно кликнуть по зеленой иконке «Run» в панели инструментов и выбрать любой эмулятор.

    Файлы проекта обновились!

    Соответственно при каждом изменении кода приложения в Android Studio придется удалять приложение на смартфоне и заново перекидывать изменившийся файл app-debug.apk с папки проекта на смартфон и устанавливать его.

    Т.е. например в build.gradle вместо runProguard false необходимо написать minifyEnabled true

    OS X:
    Установка Andoid Studio на OS X намного проще — необходимо проинсталировать JDK, а затем Android Studio.

    Создам информационную тему по Android Studio.
    Android Studio — IDE для разработки приложений для Андроид от Google на основе IntelliJ IDEA.

    Ошибки:
    1. «You are using an old, unsupported version of
    Gradle. Please use version 1.Х or greater.

    2. Project is using an old version of the Android
    Gradle plug-in. The minimum supported
    version is 0.Х.X.

    Решение О Android Studio

    Renamed Properties in BuildTypes
    runProguard => minifyEnabled
    zipAlign => zipAlignEnabled
    jniDebugBuild => jniDebuggable
    renderscriptDebug => renderscriptDebuggable

    Запускается эмулятор, но появляется ошибка «pixel launcher isn’t responding»

    Перед первым запуском пропишите в переменную JAVA_HOME значение пути к текущей версии JDK (если не установлено, то установить JDK) — например C:Program FilesJavajdk1.7.0_21
    P.S. Android Studio успешно запустилось на системе без переменной JAVA_HOME, где в PATH был прописан путь к JDK.

    Помощь в написании контрольных, курсовых и дипломных работ здесь.

    Есть ли возможность быстро и легко настроить B4A? Или сразу перейти на Android Studio?
    Не люблю софт который не может сразу работать после инсталляции. Мне лень указывать javac.exe.

    Почему Android Studio не сразу подхватывает изменения кода(только после переустановки apk)?
    Иногда после изменения кода в Android Studio (к примеру изменю вывод Log.d )и запуска его смартфоне.

    (Android studio, java) Ошибка при импорте библиотеки cannot resolve symbol android studio
    Вот библиотека https://github.com/mik3y/usb-serial-for-android. Устанавливал так, File -> New ->.

    Android studio не видит usb-подключение телефона
    Здравствуйте. Начну с того, что вторые сутки ищу решение проблемы и не нахожу. Есть другие.

    Источник

    Читайте также:  Android обмен баз данных
    Оцените статью