Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flutter_blue.dart 635B

12345678910111213141516171819202122
  1. // Copyright 2017, Paul DeMarco.
  2. // All rights reserved. Use of this source code is governed by a
  3. // BSD-style license that can be found in the LICENSE file.
  4. library flutter_blue;
  5. import 'dart:async';
  6. import 'package:collection/collection.dart';
  7. import 'package:convert/convert.dart';
  8. import 'package:flutter/services.dart';
  9. import 'package:meta/meta.dart';
  10. import 'gen/flutterblue.pb.dart' as protos;
  11. part 'src/bluetooth_characteristic.dart';
  12. part 'src/bluetooth_descriptor.dart';
  13. part 'src/bluetooth_device.dart';
  14. part 'src/bluetooth_service.dart';
  15. part 'src/constants.dart';
  16. part 'src/flutter_blue.dart';
  17. part 'src/guid.dart';