拼图定时器
我做了拼图计时器使用触摸屏 tft 显示。这将测量拼图完成前的时间。
目次
宪法
用于 arduino uno 的触摸屏显示屏蔽用于显示时间, 当拼图完成时计时器将停止。
部分
- 微电脑 arduino uno
- 触摸屏液晶显示屏蔽 ul024tf
- 木制拼图
- 铜箔胶带
处理拼图
通过将铜箔胶带贴在木制拼图的背面, 当拼图完成时, 它将变得导电。
触摸屏 tft 显示屏蔽
司机是伊拉克9325。320 x 240 像素。我把它作为秒表来衡量完成拼图的时间。
arduino ide 程序
我使用了以下 arduino 库。我创建了一个基于示例程序 tft痛. ino 的程序。
在 uno 中插入显示屏蔽, 并将拼图的两个极接线连接到 a5 引脚, 将另一个连接到 gnd。当触摸屏上的 “开始” 被推, 计时器启动, 拼图完成, 秒表停止时, a5 进行到 gnd。
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
#include <Adafruit_GFX.h> // Core graphics library #include <Adafruit_TFTLCD.h> // Hardware-specific library #include <TouchScreen.h> #if defined(__SAM3X8E__) #undef __FlashStringHelper::F(string_literal) #define F(string_literal) string_literal #endif #define YP A1 // must be an analog pin, use "An" notation! #define XM A2 // must be an analog pin, use "An" notation! #define YM 7 // can be a digital pin #define XP 6 // can be a digital pin #define TS_MINX 150 #define TS_MINY 120 #define TS_MAXX 920 #define TS_MAXY 940 // For better pressure precision, we need to know the resistance // between X+ and X- Use any multimeter to read it // For the one we're using, its 300 ohms across the X plate TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300); #define LCD_CS A3 #define LCD_CD A2 #define LCD_WR A1 #define LCD_RD A0 // optional #define LCD_RESET A4 // Assign human-readable names to some common 16-bit color values: #define BLACK 0x0000 #define BLUE 0x001F #define RED 0xF800 #define GREEN 0x07E0 #define CYAN 0x07FF #define MAGENTA 0xF81F #define YELLOW 0xFFE0 #define WHITE 0xFFFF Adafruit_TFTLCD tft(LCD_CS, LCD_CD, LCD_WR, LCD_RD, LCD_RESET); long startTime; long elapsedTime; int fractional = 0; int Min = 0; int sec = 0; int state = 3; void setup(void) { Serial.begin(9600); Serial.println(F("Paint!")); pinMode(A5, INPUT_PULLUP); tft.reset(); uint16_t identifier = tft.readID(); if(identifier == 0x9325) { Serial.println(F("Found ILI9325 LCD driver")); } else if(identifier == 0x9328) { Serial.println(F("Found ILI9328 LCD driver")); } else if(identifier == 0x7575) { Serial.println(F("Found HX8347G LCD driver")); } else if(identifier == 0x9341) { Serial.println(F("Found ILI9341 LCD driver")); } else if(identifier == 0x8357) { Serial.println(F("Found HX8357D LCD driver")); } else { Serial.print(F("Unknown LCD driver chip: ")); Serial.println(identifier, HEX); Serial.println(F("If using the Adafruit 2.8\" TFT Arduino shield, the line:")); Serial.println(F(" #define USE_ADAFRUIT_SHIELD_PINOUT")); Serial.println(F("should appear in the library header (Adafruit_TFT.h).")); Serial.println(F("If using the breakout board, it should NOT be #defined!")); Serial.println(F("Also if using the breakout, double-check that all wiring")); Serial.println(F("matches the tutorial.")); return; } tft.begin(identifier); tft.fillScreen(BLACK); tft.setRotation(1); tft.fillRect(0, 160, tft.width(), 80, CYAN); tft.setCursor(15, 165); tft.setTextColor(RED); tft.setTextSize(10); tft.println("START"); } #define MINPRESSURE 10 #define MAXPRESSURE 1000 void loop() { TSPoint p = ts.getPoint(); // if sharing pins, you'll need to fix the directions of the touchscreen pins //pinMode(XP, OUTPUT); pinMode(XM, OUTPUT); pinMode(YP, OUTPUT); //pinMode(YM, OUTPUT); // we have some minimum pressure we consider 'valid' // pressure of 0 means no pressing! if (p.z > MINPRESSURE && p.z < MAXPRESSURE) { /* Serial.print("X = "); Serial.print(p.x); Serial.print("\tY = "); Serial.print(p.y); Serial.print("\tPressure = "); Serial.println(p.z); */ // scale from 0->1023 to tft.width p.x = map(p.x, TS_MINX, TS_MAXX, tft.width(), 0); p.y = map(p.y, TS_MINY, TS_MAXY, tft.height(), 0); Serial.print("("); Serial.print(p.x); Serial.print(", "); Serial.print(p.y); Serial.println(")"); if (p.x > 160 && digitalRead(A5) == 1) { Serial.println("Reset"); if(state == 1){ state = 2; tft.fillRect(0, 160, tft.width(), 80, CYAN); tft.setCursor(15, 165); tft.setTextColor(RED); tft.setTextSize(10); tft.println("RESET"); }else if(state == 2) { elapsedTime = 0; state = 3; tft.fillRect(0, 160, tft.width(), 80, CYAN); tft.setCursor(15, 165); tft.setTextColor(RED); tft.setTextSize(10); tft.println("START"); }else{ state = 0; } delay(100); } } if(state == 0){ startTime = millis(); state = 1; tft.fillRect(0, 160, tft.width(), 80, CYAN); tft.setCursor(45, 165); tft.setTextColor(RED); tft.setTextSize(10); tft.println("STOP"); }else if(state == 1){ elapsedTime = millis() - startTime; } if(digitalRead(A5) == 0 && state != 3 && state != 2){ state = 2; tft.fillRect(0, 160, tft.width(), 80, CYAN); tft.setCursor(15, 165); tft.setTextColor(RED); tft.setTextSize(10); tft.println("RESET"); } tft.setCursor(5, 15); tft.setTextColor(WHITE, BLACK); tft.setTextSize(7); Min = (int)((elapsedTime / 1000L)/60); if (Min < 10) tft.print("0"); tft.print(Min); tft.print(":"); sec = (int)((elapsedTime / 1000L) % 60); if (sec < 10) tft.print("0"); tft.print(sec); tft.print("."); tft.setTextSize(5); fractional = (int)((elapsedTime % 1000L)/10); if (fractional < 10) tft.print("0"); tft.println(fractional); } |
工作