mirror of
https://github.com/jonasbark/swiftcontrol.git
synced 2026-02-18 00:17:40 +01:00
19 lines
513 B
Dart
19 lines
513 B
Dart
import 'package:bike_control/utils/keymap/apps/supported_app.dart';
|
|
import 'package:bike_control/utils/requirements/multi.dart';
|
|
|
|
import '../keymap.dart';
|
|
|
|
class OpenBikeControl extends SupportedApp {
|
|
OpenBikeControl()
|
|
: super(
|
|
name: 'OpenBikeControl Compatible',
|
|
packageName: "org.openbikecontrol",
|
|
compatibleTargets: Target.values,
|
|
supportsZwiftEmulation: false,
|
|
supportsOpenBikeProtocol: true,
|
|
keymap: Keymap(
|
|
keyPairs: [],
|
|
),
|
|
);
|
|
}
|