complex Arduino programs. Re-write your list of actions as states.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Topic Video
Question
100%

You will see delay() used a lot in Arduino examples. It's simple and it gets the basic point of the example working but it doesn't show you how to write more advanced programs.

Have you heard of a "state machine"? That concept will get you on your way to making very complex Arduino programs. Re-write your list of actions as states.

Expert Solution
Step 1

Your code looks like this after using the </> code tag.

byte sensorOne = 2;
byte sensorTwo = 3;
byte feedOne = 8;
byte feedTwo = 9;
byte augerOne = 16;

unsigned long feedEmptyMillis; // when feed level dropped below sensor
unsigned long turnOnDelay = 3000; // wait to turn on auger
unsigned long turnOffDelay = 10000; // turn off auger after this time

void setup() {
  // put your setup code here, to run once:

  pinMode (sensorOne, INPUT);
  pinMode (sensorTwo, INPUT);
  pinMode (feedOne, OUTPUT);
  pinMode (feedTwo, OUTPUT);
  pinMode (augerOne, OUTPUT);
}

void loop() {

  // put your main code here, to run repeatedly:
  unsigned long currentMillis = millis();

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education