Skip to content

Lulzphantom/XPlane-DataOutputReceiver-Dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XPlane Connect

Library to get an easy stream of data about XPlane UDP protocol.

pub package

How to use

In the XPlane configuration, on Data Output check 'Network via UDP' on the required o requires index. Configure data output

Then check 'Send nework data output', configure IP address and port of the dart/flutter client. Configure client

A simple dart usage example:

import 'package:xplane_connect/xplane_connect.dart';

void main() {
  var xPlaneData = XplaneConnect(49001);

  xPlaneData.stream.listen((data) {
    print('Aircraft pitch: ${data[17][0]}');
  });
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

Library to get an easy stream of data about XPlane UDP protocol.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages