Programming Terms
Sketch -- An Arduino program written in C/C++.
Setup() -- Function that runs once at the start. Used to initialize things.
Loop() -- Function that repeats forever while the Arduino is on.
DigitalWrite() -- Sends HIGH or LOW signal to a digital pin (like 0/1 or ON/OFF)
DigitalRead()-- Reads HIGH or LOW signal from a digital pin.
AnalogRead() -- Reads a value (0–1023) from an analog pin.
AnalogWrite() -- Sends PWM signal (0–255) to a pin.
Delay() -- Pauses the program for a number of milliseconds (like to blink a light)
Variable -- Stores data like numbers or text.
Function -- A block of code that does something specific.
Library -- Extra code packages you can add to use sensors or displays easily.