Skip to content

aljanshere/telpo-flutter-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

95 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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

πŸ™ 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