aljanshere/telpo-flutter-sdk
🖨 適用於Telpo熱敏打印機設備的Flutter外掛程式。
- Stars
- 24
- Forks
- 17
- 最近推送(UTC)
- 2022年11月4日
- 專案狀態
- 未封存
技術主題
使用的依賴
依賴清單 3 項
- flutter
{"sdk":"flutter"} - flutter_test開發依賴
{"sdk":"flutter"} - flutter_lints開發依賴
^2.0.0
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
telpo_flutter_sdk
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
- Add
url "https://jitpack.io"formavento project levelbuild.gradlefile (android/build.gradle).
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
...
}
}
- Set the
minSdkVersionas 19 in application levelbuild.gradlefile (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.