当前位置:首页 > 工业控制 > 电路设计项目集锦
[导读]我们将使用Arduino创建一个简单的“Dino Run”游戏,并使用PCBX在线模拟。

把经典的Dino Run变成亲身体验!使用Arduino Nano,以有趣,引人入胜的方式将互动游戏带入生活!

我们将使用Arduino创建一个简单的“Dino Run”游戏,并使用PCBX在线模拟。

硬件需求

•Arduino板(如Arduino Uno)

•OLED显示屏(如SSD1306)

•按钮

•电阻器(10kΩ按钮)

•连接电线

软件需求

•Arduino IDE编码

•用于模拟项目的PCBX在线模拟器

接线图

在深入编码部分之前,让我们先设置电路。这是连接OLED显示器和Arduino按钮的基本接线图:

OLED显示器连接:

•VCC到Arduino 5V

•GND到Arduino GND

•SCL到Arduino A5 (I2C时钟)

•SDA到Arduino A4 (I2C数据)

按钮连接:

•一端到Arduino引脚2

•另一侧到GND(带上拉电阻连接5V)

•用PCBX模拟项目

要在线模拟这个Arduino项目:

•访问PCBX:进入PCBX在线仿真网站。

•模拟项目在线:项目代码和详细信息在这里:

结论

现在,您已经使用Arduino创建了一个简单的“Dino Run”游戏,并使用PCBX在线模拟了它。这个项目不仅展示了基本的游戏机制,还使您熟悉使用I2C设备,如OLED显示器和Arduino。你可以随意修改游戏。

代码

#include

#include

#include

#define SCREEN_WIDTH 128 // OLED display width, in pixels

#define SCREEN_HEIGHT 64 // OLED display height, in pixels

#define BUTTON_PIN 2 // Pin for the jump button

// Declaration for an SSD1306 display connected to I2C (Wire)

Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);

// Bitmap data for the dinosaur image

const unsigned char dinosaur[] PROGMEM = {

0x00,0x00,0xFF,0x80,0x00,0x01,0xFF,0x80,0x00,0x03,0xFF,0xC0,0x00,0x03,0x3F,0xC0,

0x00,0x03,0xFF,0xC0,0x00,0x03,0xFF,0xC0,0x00,0x03,0xFF,0xC0,0x00,0x03,0xFF,0xC0,

0x00,0x03,0xF0,0x00,0x00,0x07,0xFF,0x00,0xC0,0x0F,0xFF,0x00,0xC0,0x3F,0xF0,0x00,

0xE0,0xFF,0xF0,0x00,0xF1,0xFF,0xFC,0x00,0xFF,0xFF,0xFE,0x00,0x7F,0xFF,0xF0,0x00,

0x3F,0xFF,0xF0,0x00,0x1F,0xFF,0xF0,0x00,0x0F,0xFF,0xE0,0x00,0x07,0xFF,0xE0,0x00,

0x03,0xFF,0xC0,0x00,0x03,0xFF,0xC0,0x00,0x03,0xF8,0x70,0x00,0x03,0x80,0x00,0x00,

0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x80,0x00,0x00,};

int dinosaurX = 10; // Initial x position of the dinosaur

int dinosaurY = 35; // Initial y position of the dinosaur

int dinosaurHeight = 26; // Height of the dinosaur image

int dinosaurWidth = 27; // Width of the dinosaur image

bool jumping = false; // Flag to indicate if the dinosaur is jumping

int jumpHeight = 5; // Jump height in pixels

int jumpSpeed = 10; // Speed of the jump

int jumpCounter = 0; // Jump counter

bool buttonPressed = false; // Flag to indicate if the button has been pressed

bool gameOver = false; // Game over flag

int score = 0; // Score

int obstacleX = SCREEN_WIDTH; // Initial x position of the obstacle

int obstacleY = 40; // y position of the obstacle

int obstacleWidth = 10; // Width of the obstacle

int obstacleHeight = 20; // Height of the obstacle

int obstacleSpeed = 8; // Speed of the obstacle

void setup() {

pinMode(BUTTON_PIN, INPUT_PULLUP); // Set the button pin as input with pull-up resistor

if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { // 0x3C is the I2C address of the OLED display

Serial.println(F("SSD1306 allocation failed"));

for(;;); // Do not proceed

}

display.clearDisplay(); // Clear the display

display.setTextSize(1); // Set text size

display.setTextColor(WHITE); // Set text color

}

void loop() {

if (gameOver) {

display.clearDisplay();

display.setCursor(0, 0);

display.println("Game Over!");

display.println("Score: " + String(score));

display.display();

delay(2000);

return;

}

// Check if the button is pressed (button is normally HIGH, LOW when pressed)

if (!jumping && !buttonPressed && digitalRead(BUTTON_PIN) == LOW) {

buttonPressed = true;

jumping = true;

jumpCounter = 0; // Reset jump counter when starting a jump

}

if (jumping) {

if (jumpCounter < jumpHeight) {

// Ascend phase

dinosaurY -= jumpSpeed;

} else if (jumpCounter >= jumpHeight && jumpCounter < jumpHeight * 2) {

// Descend phase

dinosaurY += jumpSpeed;

} else {

// End jump

jumping = false;

dinosaurY = 35; // Reset the dinosaur to the initial y position

buttonPressed = false; // Reset button pressed flag

}

jumpCounter++;

}

// Move the obstacle

obstacleX -= obstacleSpeed;

if (obstacleX < -obstacleWidth) {

obstacleX = SCREEN_WIDTH;

score++;

}

// Collision detection

if (dinosaurX < obstacleX + obstacleWidth && dinosaurX + dinosaurWidth > obstacleX &&

dinosaurY < obstacleY + obstacleHeight && dinosaurY + dinosaurHeight > obstacleY) {

gameOver = true;

}

display.clearDisplay(); // Clear the display

display.drawBitmap(dinosaurX, dinosaurY, dinosaur, dinosaurWidth, dinosaurHeight, WHITE); // Draw the dinosaur

display.fillRect(obstacleX, obstacleY, obstacleWidth, obstacleHeight, WHITE); // Draw the obstacle

drawRoad(); // Draw the road

display.setCursor(0, 0);

display.print("Score: ");

display.println(score);

display.display(); // Update the display

delay(10); // Small delay for smoother animation

}

void drawCross(int x, int y, int width, int height) {

display.drawLine(x, y, x, y + height, WHITE);

display.drawLine(x + width, y, x + width, y + height, WHITE);

display.drawLine(x, y + height / 2, x + width, y + height / 2, WHITE);

}

void drawRoad() {

int roadWidth = 130; // Width of the road (in pixels)

int roadHeight = 2; // Height of the road (in pixels)

int roadX = (SCREEN_WIDTH - roadWidth) / 2; // Center the road horizontally

int roadY = SCREEN_HEIGHT - roadHeight; // Position the road at the bottom

display.fillRect(roadX, roadY, roadWidth, roadHeight, WHITE);

int lineSpacing = 10;

for (int i = 0; i < roadWidth; i += lineSpacing) {

display.drawLine(roadX + i, roadY, roadX + i, roadY + roadHeight, BLACK);

}

}

本文编译自hackster.io

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: 驱动电源

在工业自动化蓬勃发展的当下,工业电机作为核心动力设备,其驱动电源的性能直接关系到整个系统的稳定性和可靠性。其中,反电动势抑制与过流保护是驱动电源设计中至关重要的两个环节,集成化方案的设计成为提升电机驱动性能的关键。

关键字: 工业电机 驱动电源

LED 驱动电源作为 LED 照明系统的 “心脏”,其稳定性直接决定了整个照明设备的使用寿命。然而,在实际应用中,LED 驱动电源易损坏的问题却十分常见,不仅增加了维护成本,还影响了用户体验。要解决这一问题,需从设计、生...

关键字: 驱动电源 照明系统 散热

根据LED驱动电源的公式,电感内电流波动大小和电感值成反比,输出纹波和输出电容值成反比。所以加大电感值和输出电容值可以减小纹波。

关键字: LED 设计 驱动电源

电动汽车(EV)作为新能源汽车的重要代表,正逐渐成为全球汽车产业的重要发展方向。电动汽车的核心技术之一是电机驱动控制系统,而绝缘栅双极型晶体管(IGBT)作为电机驱动系统中的关键元件,其性能直接影响到电动汽车的动力性能和...

关键字: 电动汽车 新能源 驱动电源

在现代城市建设中,街道及停车场照明作为基础设施的重要组成部分,其质量和效率直接关系到城市的公共安全、居民生活质量和能源利用效率。随着科技的进步,高亮度白光发光二极管(LED)因其独特的优势逐渐取代传统光源,成为大功率区域...

关键字: 发光二极管 驱动电源 LED

LED通用照明设计工程师会遇到许多挑战,如功率密度、功率因数校正(PFC)、空间受限和可靠性等。

关键字: LED 驱动电源 功率因数校正

在LED照明技术日益普及的今天,LED驱动电源的电磁干扰(EMI)问题成为了一个不可忽视的挑战。电磁干扰不仅会影响LED灯具的正常工作,还可能对周围电子设备造成不利影响,甚至引发系统故障。因此,采取有效的硬件措施来解决L...

关键字: LED照明技术 电磁干扰 驱动电源

开关电源具有效率高的特性,而且开关电源的变压器体积比串联稳压型电源的要小得多,电源电路比较整洁,整机重量也有所下降,所以,现在的LED驱动电源

关键字: LED 驱动电源 开关电源

LED驱动电源是把电源供应转换为特定的电压电流以驱动LED发光的电压转换器,通常情况下:LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: LED 隧道灯 驱动电源
关闭