We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i use debug in log private fun printTextCenter() { val text = """ ------------- This will be printed Center aligned cool isn't it? ------------------
""".trimIndent() Printama.with(this).connect { printama: Printama -> try { printama.printText("Test Print", Printama.CENTER) Log.e("BluetoothError", "Print command sent") } catch (e: IOException) { Log.e("BluetoothError", "Failed to print: ${e.message}") showToast("Printing failed: ${e.message}") } finally { Log.e("BluetoothError", "Closing connection") printama.close() } } } in the log a message appears "Print command sent", but the printer doesn't print anything position implementation 'com.github.DantSu:ESCPOS-ThermalPrinter-Android:3.3.0' androit test: Android 14
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i use debug in log
private fun printTextCenter() {
val text = """
-------------
This will be printed
Center aligned
cool isn't it?
------------------
The text was updated successfully, but these errors were encountered: