arduino ide编写的esp32和st773580*160的一个接球小游戏

#include<TFT_eSPI.h>

#define led 2

int bx,by=5,x=65,y=57,mark,level=1;

const int r=5,sjs=23,pin=13;

TFT_eSPI tft=TFT_eSPI();

uint16_t color=tft.color565(128,0,128); //RGB颜色转GBR565,紫色

void setup()

{

// put your setup code here, to run once:

Serial.begin(921600);

pinMode(led,OUTPUT);

pinMode(pin,INPUT);

digitalWrite(led,LOW);

tft.init();

tft.fillScreen(TFT_WHITE);

tft.setRotation(3);

tft.setTextSize(2);

tft.setTextColor(TFT_BLACK);

randomSeed(analogRead(sjs)); //使用一个引脚来作为随机数种子

bx=random(5,155);

}

void loop()

{

// put your main code here, to run repeatedly:

if(bx>=x&&bx<=x+15&&by+5>=y&&by+5<=y+3)

{

mark++;

if(mark%5==0)

{

level++;

}

tft.fillScreen(TFT_WHITE);

tft.setCursor(0,0);

tft.println("you win!");

tft.print("your mark:");

tft.println(mark);

tft.print("your level:");

tft.print(level);

delay(1000);

tft.fillScreen(TFT_WHITE);

randomSeed(analogRead(sjs));

bx=random(5,155);

by=5;

x=65;

y=57;

}

if(bx<=155&&bx>=5&&by>=5&&by<=75)

{

tft.fillRect(x,y,15,3,TFT_BLACK);

tft.fillCircle(bx,by,r,color);

tft.drawPixel(bx,by,TFT_WHITE);

delay(100);

tft.fillCircle(bx,by,r,TFT_WHITE);

tft.fillRect(x,y,15,3,TFT_WHITE);

x=double(analogRead(13))/4095.00*145;

Serial.println(bx>=x&&bx<=x+15&&by+5<=y&&by+5>=y+3);

Serial.print(x);

Serial.print(" ");

Serial.print(bx);

Serial.print(" ");

Serial.println(by);

by+=2*level+1;

}

else

{

tft.fillScreen(TFT_WHITE);

tft.setCursor(0,0);

tft.println("Game ovor!");

tft.print("your mark:");

tft.println(mark);

tft.print("your level:");

tft.print(level);

digitalWrite(led,HIGH);

delay(100);

digitalWrite(led,LOW);

delay(100);

digitalWrite(led,HIGH);

delay(100);

digitalWrite(led,LOW);

delay(100);

digitalWrite(led,HIGH);

delay(3000);

exit(0);

}

}

cpp 复制代码
#include<TFT_eSPI.h>
#define led 2
int bx,by=5,x=65,y=57,mark,level=1;
const int r=5,sjs=23,pin=13;
TFT_eSPI tft=TFT_eSPI();
uint16_t color=tft.color565(128,0,128); //RGB颜色转GBR565,紫色
void setup()
{
  // put your setup code here, to run once:
  Serial.begin(921600);
  pinMode(led,OUTPUT);
  pinMode(pin,INPUT);
  digitalWrite(led,LOW);
  tft.init();
  tft.fillScreen(TFT_WHITE);
  tft.setRotation(3);
  tft.setTextSize(2);
  tft.setTextColor(TFT_BLACK);
  randomSeed(analogRead(sjs)); //使用一个引脚来作为随机数种子
  bx=random(5,155);
}
void loop()
{
  // put your main code here, to run repeatedly:
  if(bx>=x&&bx<=x+15&&by+5>=y&&by+5<=y+3)
  {
    mark++;
    if(mark%5==0)
    {
      level++;
    }
    tft.fillScreen(TFT_WHITE);
    tft.setCursor(0,0);
    tft.println("you win!");
    tft.print("your mark:");
    tft.println(mark);
    tft.print("your level:");
    tft.print(level);
    delay(1000);
    tft.fillScreen(TFT_WHITE);
    randomSeed(analogRead(sjs));
    bx=random(5,155);
    by=5;
    x=65;
    y=57;
  }
  if(bx<=155&&bx>=5&&by>=5&&by<=75)
  {
    tft.fillRect(x,y,15,3,TFT_BLACK);
    tft.fillCircle(bx,by,r,color);
    tft.drawPixel(bx,by,TFT_WHITE);
    delay(100);
    tft.fillCircle(bx,by,r,TFT_WHITE);
    tft.fillRect(x,y,15,3,TFT_WHITE);
    x=double(analogRead(13))/4095.00*145;
    Serial.println(bx>=x&&bx<=x+15&&by+5<=y&&by+5>=y+3);
    Serial.print(x);
    Serial.print(" ");
    Serial.print(bx);
    Serial.print(" ");
    Serial.println(by);
    by+=2*level+1;
  }
  else
  {
    tft.fillScreen(TFT_WHITE);
    tft.setCursor(0,0);
    tft.println("Game ovor!");
    tft.print("your mark:");
    tft.println(mark);
    tft.print("your level:");
    tft.print(level);
    digitalWrite(led,HIGH);
    delay(100);
    digitalWrite(led,LOW);
    delay(100);
    digitalWrite(led,HIGH);
    delay(100);
    digitalWrite(led,LOW);
    delay(100);
    digitalWrite(led,HIGH);
    delay(3000);
    exit(0);
  }
}
相关推荐
挥剑决浮云 -10 分钟前
Linux 之 安装软件、GCC编译器、Linux 操作系统基础
linux·服务器·c语言·c++·经验分享·笔记
小O_好好学1 小时前
CentOS 7文件系统
linux·运维·centos
哲伦贼稳妥2 小时前
一天认识一个硬件之机房地板
运维·网络·经验分享·其他
john_hjy2 小时前
11. 异步编程
运维·服务器·javascript
x晕x2 小时前
Linux dlsym符号查找疑惑分析
linux·运维·服务器
活跃的煤矿打工人2 小时前
【星海saul随笔】Ubuntu基础知识
linux·运维·ubuntu
tangdou3690986553 小时前
两种方案手把手教你多种服务器使用tinyproxy搭建http代理
运维·后端·自动化运维
北京智和信通3 小时前
云平台和虚拟化智慧运维监控,全面提升故障感知与处置能力
运维·虚拟化·云平台·虚拟机监控
fasewer3 小时前
第五章 linux实战-挖矿 二
linux·运维·服务器
楚灵魈3 小时前
[Linux]从零开始的网站搭建教程
linux·运维·服务器