first fact sheet Flashcards

1
Q

Arduino program

A

called a sketch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

integrated development environment

A

asoftware applicationthat provides comprehensive facilities tocomputer programmersforsoftware development.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The void setup

A

part of a sketch runs once and is the first set of commands that the Arduino runs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The void loop

A

part of a sketch runs continuously after the void setup instructions have been followed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

debugger

A

searching for syntax errors, bugs, and other issues that might prevent the sketch from running successfully

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

upload

A

compile the sketch and upload it onto the Arduino microprocessor.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Serial command

A

creates a link to the serial monitor at a specified rate of data transmission.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Serial Monitor

A

window in the Arduino IDE that can receive messages or data from the Arduino and show them on the computer screen.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

function

A

container for statements (lines of code) that tell the Arduino to do certain jobs.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

library

A

a file or set of files that contains a set of values, variables, functions, drivers, etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Hardware

A

physical components or pieces of a computer, such as a keyboard, monitor, hard disk drive, motherboard, or USB port.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Software

A

is the electronic or digital programs and instructions a computer uses to operate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Source code

A

is another name for the lines of code or written instructions that tell a computer or microprocessor what to do.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

compiler

A

takes source code and converts it into machine language (and eventually binary) which the computer can actually read and understand.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

argument

A

is a value or parameter used by a command or piece of code in a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

syntax

A

the grammatical rules and structural patterns governing the ordered use of appropriate words and symbols for issuing commands, writing code, etc., in a particular software application or programming language

17
Q

software bug

A

is an error, flaw,failure, orfaultin a computer program orsystemthat causes it to produce an incorrect or unexpected result, or to behave in unintended ways

18
Q

debugger

A

a program that goes through lines of code and searches for “bugs” often times syntax errors or other issues.

19
Q

Digital signals

A

a combination of low/high, true/false, 1/0, or on/off. Digital signals are discrete, meaning they are either one thing or the other—there is no in-between.

20
Q

Analog signals

A

are continuous. They can be any value.

21
Q

Computers and microprocessors

A

are digital devices

22
Q

5V signal

A

a “high” or “true” value

23
Q

0 V signal

A

represents a “low” or “false” value.

24
Q

threshold

A

a particular value above or below which a signal will or will not be processed.

25
Q

sensors

A

read range of values

26
Q

Pulse Width Modulation

A

a technique that allows a digital signal to be turned into an analog signal.

27
Q

computing

A

memory refers to the computer hardware devices used to store information for immediate use in a computer

28
Q

RAM or Random Access Memory

A

a type of fast access memory used for temporary storage

29
Q

disk drive

A

a slower-to-access type of memory that is more suitable for long term storage

30
Q

ROM or Read Only Memory

A

a type of memory that once recorded, cannot be changed, such as a CD-ROM.

31
Q

bit/binary digit

A

can be either a 1 or 0 (Or a high/low or true/false).

32
Q

byte

A

a unit of digital information that consists of 8 bits.