add: sensors
This commit is contained in:
@@ -9,3 +9,28 @@
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
class Sample_Type extends $pb.ProtobufEnum {
|
||||
static const Sample_Type UNSPECIFIED = Sample_Type._(0, _omitEnumNames ? '' : 'UNSPECIFIED');
|
||||
static const Sample_Type TEMPERATURE_C = Sample_Type._(1, _omitEnumNames ? '' : 'TEMPERATURE_C');
|
||||
static const Sample_Type HUMIDITY = Sample_Type._(2, _omitEnumNames ? '' : 'HUMIDITY');
|
||||
static const Sample_Type PRESSURE = Sample_Type._(3, _omitEnumNames ? '' : 'PRESSURE');
|
||||
|
||||
static const $core.List<Sample_Type> values = <Sample_Type> [
|
||||
UNSPECIFIED,
|
||||
TEMPERATURE_C,
|
||||
HUMIDITY,
|
||||
PRESSURE,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, Sample_Type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static Sample_Type? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const Sample_Type._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
|
||||
Reference in New Issue
Block a user