AS-289R2 Thermal Printer Shield Sample Program.

Dependencies:   AS289R2

Fork of AS-289R2_Hello-mbed-OS-World by Toyomasa Watarai

Files at this revision

API Documentation at this revision

Comitter:
takehiro
Date:
Sat Mar 11 09:11:46 2017 +0000
Parent:
28:96865fc63733
Commit message:
Fixed : suoerscript and subscript

Changed in this revision

AS289R2.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/AS289R2.lib	Mon Feb 27 05:04:10 2017 +0000
+++ b/AS289R2.lib	Sat Mar 11 09:11:46 2017 +0000
@@ -1,1 +1,1 @@
-https://developer.mbed.org/users/takehiro/code/AS289R2/#39c683fde12c
+http://mbed.org/users/MACRUM/code/AS289R2/#7f8acb87da7c
--- a/main.cpp	Mon Feb 27 05:04:10 2017 +0000
+++ b/main.cpp	Sat Mar 11 09:11:46 2017 +0000
@@ -178,16 +178,16 @@
 
     /* Superscript */
     tp.printf("1cm");
-    tp.setScript(1);
+    tp.setScript(AS289R2::SCRIPT_SUPER);
     tp.printf("3");
     tp.printf("\r");
-    tp.clearScript();
+    tp.setScript(AS289R2::SCRIPT_CANCEL);
 
     /* Subscript */
     tp.printf("H");
-    tp.setScript(2);
+    tp.setScript(AS289R2::SCRIPT_SUB);
     tp.printf("2");
-    tp.clearScript();
+    tp.setScript(AS289R2::SCRIPT_CANCEL);
     tp.printf("O\r");
 
     /* PaperFeed */