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