understanding the computer
on a computer at it's most fundermental we use binary which is data bits on or off so a computer only knows on or off and we use logic gates and binary to enable the computer to count with "and "or" not" logic sequences you can configure the computer to output numbers based on these with
0000 = 0
0001 = 1
0010 = 2
0011=3
0100= 4
0101 =5
0110 = 6
0111= 7
1000 = 8
1001 = 9
1010 = 10
1011 =11
1100 = 12
1101 = 13
1110 = 14
1111 = 15
The Start Function runs once at the beginning of the running sequence of the code.
The loop function runs every refresh of the microcontroller in HZ
"Hertz"
You can put variables that are relied on in the start above the start like shown here
bool1bitTrueorFalse =; /**A Bool or boolian varible is a 1 Bit DataType Vaireable declration of a true or false staitment absolute true or false staitment if not unassigned void of infomation or e.g "bool Boolian_data_refrence_Varible_Name =;" and not set true or false "bool Boolian_data_refrence_Varible_Name =TRUE/FALSE;" the varible name is for infomation in text or numbers underscore not using spaces it defines the use of the data comprehendable to humans in language in the Intergrated development enviroment which will be shortened when compiled to minamise the amount of used bits boolian a varible that is either a true or false 1 bit True or False data type */