feat: implement BLE provisioning protocol, rudimentary UI

This commit is contained in:
2026-05-13 11:58:37 +02:00
parent c36168a8ef
commit 64f778fb6f
24 changed files with 3430 additions and 32 deletions
+40
View File
@@ -0,0 +1,40 @@
// This is a generated file - do not edit.
//
// Generated from session.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_relative_imports
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
class SecSchemeVersion extends $pb.ProtobufEnum {
static const SecSchemeVersion SecScheme0 =
SecSchemeVersion._(0, _omitEnumNames ? '' : 'SecScheme0');
static const SecSchemeVersion SecScheme1 =
SecSchemeVersion._(1, _omitEnumNames ? '' : 'SecScheme1');
static const SecSchemeVersion SecScheme2 =
SecSchemeVersion._(2, _omitEnumNames ? '' : 'SecScheme2');
static const $core.List<SecSchemeVersion> values = <SecSchemeVersion>[
SecScheme0,
SecScheme1,
SecScheme2,
];
static final $core.List<SecSchemeVersion?> _byValue =
$pb.ProtobufEnum.$_initByValueList(values, 2);
static SecSchemeVersion? valueOf($core.int value) =>
value < 0 || value >= _byValue.length ? null : _byValue[value];
const SecSchemeVersion._(super.value, super.name);
}
const $core.bool _omitEnumNames =
$core.bool.fromEnvironment('protobuf.omit_enum_names');