Implementato sdk honeywell e metodi per lo scanner barcode
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace SteUp.Shared.Core.BarcodeReader.Contracts;
|
||||
|
||||
public interface IBarcodeManager
|
||||
{
|
||||
void Init();
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using SteUp.Shared.Core.BarcodeReader.Dto;
|
||||
|
||||
namespace SteUp.Shared.Core.BarcodeReader.Contracts;
|
||||
|
||||
public interface IBarcodeReaderService
|
||||
{
|
||||
bool IsRightAdapter();
|
||||
void Init(Action onDeviceReady);
|
||||
void Deinit();
|
||||
void Register(Action<BarcodeScanDto> onScanSuccessful, Action<Exception> onScanFailed);
|
||||
string GetAdapterName();
|
||||
void OnKeyEvent(object keyEvent);
|
||||
void ChangeSettings(List<(string Key, object Value)> settings);
|
||||
}
|
||||
Reference in New Issue
Block a user