WW1 Reviewer

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Sensor Output

What is no. 1?

<p>What is no. 1?</p>
2
New cards

Sensor Input

What is no. 2?

<p>What is no. 2?</p>
3
New cards

Comparator Op Amp

What is no. 3?

<p>What is no. 3?</p>
4
New cards

Trim-pot Adjust Sensitivity

What is no. 4?

<p>What is no. 4?</p>
5
New cards

Power LED

What is no. 5?

<p>What is no. 5?</p>
6
New cards

Signal LED

What is no. 6?

<p>What is no. 6?</p>
7
New cards

Analog Out

What is AO?

8
New cards

Digital Out

What is DO?

9
New cards

LOW (less resistance and voltage)

Serial Monitor when rain sensor is wet

10
New cards

HIGH (higher resistance and voltage)

Serial Monitor when rain sensor is dry

11
New cards

int sensorPin = A0;

Part of code which shows that rain sensor is connected to analog pin

12
New cards

int sensorValue = 0;

Part of code which shows that you are declaring a variable named sensorValue of type integer (int) and initializing it to 0.

13
New cards

void setup () {
Serial.begin(9600);
}

Part of code that starts serial monitor

14
New cards

void loop () {
SensorValue = analogRead(sensorPin);
Serial.print(“Sensor Value: “);
Serial.println(sensorValue);
}

Part of code that reads rain sensor value

15
New cards

Comparator Op Amp

Compares the sensor’s moisture-dependent voltage to a reference level and outputs HIGH when dry and LOW when rain is detected.

16
New cards

Trim-pot Adjust Sensitivity

Adjusts the sensitivity of a rain sensor by changing the reference voltage in the comparator, which sets how much moisture is needed before the sensor output switches from dry to wet.

Explore top flashcards