Public projects 2
ABPC - Automatic Bing Point Collector
Project tutorial by Unsigned_Arduino
- 526 views
- 0 comments
- 3 respects
The Chrome Dino Game on an LCD Shield
Project tutorial by Unsigned_Arduino
- 13,317 views
- 3 comments
- 24 respects
Toolbox 3
Respected projects 20
Automatic Device Tester with Arduino
Project tutorial by Brian Lough
- 9,038 views
- 13 comments
- 39 respects
Comments 9
The Chrome Dino Game on an LCD Shield almost 2 years ago
Arduino Controlled LED Multi-Player Game on Arduino "Shield" about 2 years ago
It's a great project!
Some advice: Using the keyword const in front of a variable saves SRAM!
Arduino Digital Voltmeter 5V about 2 years ago
Use this code:
#include<LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2);
int analogPin=1;
void setup()
{
lcd.begin(16,2);
}
void loop()
{
int v=analogRead(analogPin);
int voltage=v/1023*5.0;
lcd.print("voltage=");
lcd.print(voltage);
}
Anyone could do the same project with any screen as long as the library that is driving the screen is based off the print class. All you have to do is modify the code for reading the buttons and the code to print to the screen as the logic should work with all libraries based off the print class. Like lcd.write --> tft.write