Commit b8396696cf04e94f38d4e52d5e6421ceb2b0a661

Authored by Wisnu
0 parents

arduino thermal

Showing 1 changed file with 110 additions and 0 deletions
  1 +#include <PString.h>
  2 +#include "Adafruit_Thermal.h"
  3 +#include "adalogo.h"
  4 +#include "adaqrcode.h"
  5 +#include <Wire.h>
  6 +#include "RTClib.h"
  7 +
  8 +RTC_DS1307 RTC;
  9 +
  10 +#include "SoftwareSerial.h"
  11 +#define TX_PIN 2 // Arduino transmit YELLOW WIRE labeled RX on printer
  12 +#define RX_PIN 3 // Arduino receive GREEN WIRE labeled TX on printer
  13 +
  14 +SoftwareSerial mySerial(RX_PIN, TX_PIN);
  15 +Adafruit_Thermal printer(&mySerial);
  16 +
  17 +int hitung=0;
  18 +
  19 +const int buttonPin = 12;
  20 +int buttonState=0;
  21 +int lastButtonState = LOW;
  22 +long lastDebounceTime = 0;
  23 +long debounceDelay = 50;
  24 +
  25 +void setup() {
  26 + Wire.begin();
  27 + RTC.begin();
  28 + if (! RTC.isrunning()) {
  29 + Serial.println("RTC is NOT running!");
  30 +
  31 + RTC.adjust(DateTime(__DATE__, __TIME__));
  32 + }
  33 + pinMode(buttonPin, INPUT);
  34 +
  35 + pinMode(7, OUTPUT); digitalWrite(7, LOW);
  36 +
  37 +
  38 + mySerial.begin(9600); // Initialize SoftwareSerial
  39 +
  40 + printer.begin(); // Init printer (same regardless of serial type)
  41 +
  42 +
  43 +
  44 +}
  45 +
  46 +void loop() {
  47 +
  48 + buttonState = digitalRead(buttonPin);
  49 + if (buttonState == HIGH) {
  50 + hitung+=1;
  51 + char buffer[40];
  52 + PString str(buffer, sizeof(buffer));
  53 + if(hitung<100)
  54 + {
  55 + str.print(0);
  56 + if(hitung<10)
  57 + {
  58 + str.print(0);
  59 + }
  60 + }
  61 + else if(hitung<10)
  62 + {
  63 + str.print(0);
  64 + }
  65 + str.print(hitung);
  66 + printer.printBitmap(adalogo_width, adalogo_height, adalogo_data);
  67 +printer.boldOn();
  68 + printer.justify('C');
  69 +
  70 + printer.setSize('S');
  71 + printer.println(F("Nomor antrian :"));
  72 +
  73 + printer.setSize('L');
  74 + printer.println(str);
  75 + printer.setSize('S');
  76 + printer.boldOn();
  77 + printer.println(F("wisnu tes..!!"));
  78 + DateTime now = RTC.now();
  79 + str.begin();
  80 + str.print(now.day(), DEC);
  81 + str.print('-');
  82 + str.print(now.month(), DEC);
  83 + str.print('-');
  84 + str.print(now.year(), DEC);
  85 + str.print(' ');
  86 + str.print(now.hour(), DEC);
  87 + str.print(':');
  88 + if((now.minute(), DEC)<10)
  89 + {
  90 + str.print('0');
  91 + }
  92 + str.print(now.minute(), DEC);
  93 + str.print(':');
  94 + if((now.second(), DEC)<10)
  95 + {
  96 + str.print('0');
  97 + }
  98 + str.print(now.second(), DEC);
  99 + printer.println(str);
  100 + printer.feed(4);
  101 + printer.sleep();
  102 + delay(3000);
  103 + printer.wake();
  104 + printer.setDefault();
  105 +
  106 + }
  107 + else {
  108 +
  109 + }
  110 +}