Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using this arduino code we wrote for our lab, I need to add a routine to indicate the button state of an added push button.

Using this arduino code we wrote for our lab, I need to add a routine to indicate the button state of an added push button. In a general way, I want to add an if/ then statement that will feed the button state to my LCD. Don't worry about the pins or setting up libraries, just can't settle the lines to accomplish that task.

Working code:

#include

// initialize the library with the numbers of the interface pins

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {

// set up the LCD's number of columns and rows:

lcd.begin(16, 2);

// Print a message to the LCD.

lcd.print("hello, world!");

void loop() {

// set the cursor to column 0, line 1

// (note: line 1 is the second row, since counting begins with 0):

lcd.setCursor(0, 1);

// print the number of seconds since reset:

lcd.print(millis() / 1000);

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DATABASE Administrator Make A Difference

Authors: Mohciine Elmourabit

1st Edition

B0CGM7XG75, 978-1722657802

More Books

Students also viewed these Databases questions

Question

2. How were various roles filled?

Answered: 1 week ago