honeywell_plugin 1.0.4 honeywell_plugin: ^1.0.4 copied to clipboard
Flutter plugin for connecting to honeywell hardware.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:honeywell_plugin/honeywell_plugin.dart';
import 'package:honeywell_plugin/scanner_callback.dart';
import 'package:honeywell_plugin/code_format.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp>
with WidgetsBindingObserver
implements ScannerCallBack {
HoneywellPlugin? honeywellScanner;
String? scannedCode = 'Empty';
bool scannerEnabled = false;
bool? scannerAvailable = false;
bool scan1DFormats = true;
bool scan2DFormats = true;
@override
void initState() {
super.initState();
WidgetsBinding.instance!.addObserver(this);
honeywellScanner = HoneywellPlugin(scannerCallBack: this);
updateScanProperties();
Timer.periodic(const Duration(microseconds: 300), (timer) async {
scannerAvailable = await honeywellScanner!.isAvailable();
});
}
updateScanProperties() {
List<CodeFormat> codeFormats = [];
if (scan1DFormats) codeFormats.addAll(CodeFormatUtils.ALL_1D_FORMATS);
if (scan2DFormats) codeFormats.addAll(CodeFormatUtils.ALL_2D_FORMATS);
honeywellScanner!
.setProperties(CodeFormatUtils.getAsPropertiesComplement(codeFormats));
}
@override
void onDecoded(String? result) {
setState(() {
scannedCode = result;
});
}
@override
void onError(Exception error) {
setState(() {
scannedCode = error.toString();
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Honeywell scanner example'),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'Scanner: ${scannerEnabled ? "Started" : "Stopped"}',
style:
TextStyle(color: scannerEnabled ? Colors.blue : Colors.red),
),
const Divider(
color: Colors.transparent,
),
Text(
'Scanner is ${scannerAvailable ?? false ? "Available" : "Unavailable"}',
style:
TextStyle(color: scannerEnabled ? Colors.blue : Colors.red),
),
const Divider(
color: Colors.transparent,
),
Text('Scanned code: $scannedCode'),
const Divider(
color: Colors.transparent,
),
SwitchListTile(
title: const Text("Scan 1D Codes"),
subtitle: const Text("like Code-128, Code-39, Code-93, etc"),
value: scan1DFormats,
onChanged: (value) {
scan1DFormats = value;
updateScanProperties();
setState(() {});
},
),
SwitchListTile(
title: const Text("Scan 2D Codes"),
subtitle: const Text("like QR, Data Matrix, Aztec, etc"),
value: scan2DFormats,
onChanged: (value) {
scan2DFormats = value;
updateScanProperties();
setState(() {});
},
),
ElevatedButton(
child: const Text("Start Scanner"),
onPressed: () {
honeywellScanner!.startScanner();
scannerEnabled = true;
setState(() {});
},
),
const Divider(
color: Colors.transparent,
),
ElevatedButton(
child: const Text("Stop Scanner"),
onPressed: () {
honeywellScanner!.stopScanner();
scannerEnabled = false;
setState(() {});
},
),
const Divider(
color: Colors.transparent,
),
GestureDetector(
onTapDown: (tapDownDetails) {
honeywellScanner!.startScanning();
},
onTapUp: (tapUpDetails) {
honeywellScanner!.stopScanning();
},
child: const Text(
'SCANN',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.black,
fontSize: 25),
))
],
),
),
);
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
super.didChangeAppLifecycleState(state);
switch (state) {
case AppLifecycleState.resumed:
if (honeywellScanner != null) honeywellScanner!.resumeScanner();
break;
case AppLifecycleState.inactive:
if (honeywellScanner != null) honeywellScanner!.pauseScanner();
break;
case AppLifecycleState
.paused: //AppLifecycleState.paused is used as stopped state because deactivate() works more as a pause for lifecycle
if (honeywellScanner != null) honeywellScanner!.pauseScanner();
break;
case AppLifecycleState.detached:
if (honeywellScanner != null) honeywellScanner!.pauseScanner();
break;
default:
break;
}
}
@override
void dispose() {
if (honeywellScanner != null) honeywellScanner!.stopScanner();
super.dispose();
}
}