FLUTTER ECOSYSTEM

aljanshere/telpo-flutter-sdk

🖨 适用于Telpo热敏打印机设备的Flutter插件。

telpo-flutter-sdk 项目封面
Stars
24
Forks
17
最近推送(UTC)
2022年11月4日
项目状态
未归档
Aljan Shikhiyev GitHub avatar
GITHUB User

Aljan Shikhiyev ↗

MegaSec LLCBaku, Azerbaijan
语言KotlinDartRubySwiftObjective-C

技术话题

使用的依赖

依赖清单 3 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}
  • flutter_lints开发依赖^2.0.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

telpo_flutter_sdk

Pub Version

A Flutter plugin for handling connection and communication with Telpo thermal printer devices.

cover

💡 Motivation

While developing MASHINPAY payment solution we've purchased Telpo thermal printers ("M1"s specifically) for printing invoice files after users' successful transaction. The Telpo devices come with a native SDK and documentation for it. Since there wasn't an official plugin for Flutter, we had to customize the plugin by ourselves. We've added so many useful methods for better handling exceptions, customizable print layout and etc.

⚙️ Android setup

  1. Add url "https://jitpack.io" for maven to project level build.gradle file (android/build.gradle).
allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
        ...
    }
}
  1. Set the minSdkVersion as 19 in application level build.gradle file (android/app/build.gradle).
android {
    defaultConfig {
        ...
        minSdkVersion 19
        ...
    }
}

🕹️ Usage

Initialization

To get started, create an instance of TelpoFlutterChannel:

final _telpoFlutterChannel = TelpoFlutterChannel();

Connecting with Telpo:

final bool connected = await _telpoFlutterChannel.connect();
// Result: true, false.

Checking Telpo's status:

final TelpoStatus status = await _telpoFlutterChannel.checkStatus();
// Result: ok, noPaper, overHeat, cacheIsFull, unknown.

Checking connection status with Telpo:

final bool status = await _telpoFlutterChannel.isConnected();
// Result: true, false.

Printing a sheet:

// Creating an empty sheet
final sheet = TelpoPrintSheet();

// Creating a text element
const textData = PrintData.text(
  'TelpoFlutterSdk',
  alignment: PrintAlignment.center,
  fontSize: PrintedFontSize.size34,
);

// Creating 8-line empty space
const spacing = PrintData.space(step: 8);

// Inserting previously created text element to the sheet.
sheet.addElement(textData);

// Inserting previously created spacing element to the sheet.
sheet.addElement(spacing);

final PrintResult result = await _telpoFlutterChannel.print(sheet);
// Result: success, noPaper, lowBattery, overHeat, dataCanNotBeTransmitted, other.

📝 Roadmap

✅ Well-written documentation 🤓
✅ Document the platform-specific configurations.
✅ Add explanations for Enum values of PrintResult and TelpoStatus.
⏳ Print image file.
⏳ Toggle printing event via NFC. 🤩
⏳ Toggle printing event via BlueTooth, may be?
⏳ Checking if Telpo is available on the device?

🤓 Contributors

https://github.com/kamranbekirovyz.png https://github.com/aljanshere.png

🙏 Credits

While we were trying to understand and port the Telpo device to the Flutter framework we got very inspiring code samples and examples from Efikas's plugin (flutter_telpo) for Flutter which can be considered as a basic version of our plugin and our plugin can be considered as more customized of his since both of us used the same native implementation of the Telpo's Android SDK which comes together with the Telpo device.

🐞 Bugs/Requests

If you encounter any problems please open an issue. If you feel the library is missing a feature, please raise a ticket on GitHub and we'll look into it. Pull requests are welcome.

📃 License

MIT License