Question: Learning Outcomes Use TinkerCAD to develop an Arduino sketch. Create documentation using flow chart. Steps Start the TinkerCAD. Note: Other programming editors like Arduino IDE

Learning Outcomes
Use TinkerCAD to develop an Arduino sketch.
Create documentation using flow chart.
Steps
Start the TinkerCAD. Note: Other programming editors like Arduino IDE are also acceptable.
Learn from the instructions from references 1 and 2(in Reference section) about creating flow charts using Microsoft
Visio (online). You may use other online software (like
draw.io) to draw the flow chart. Different flowchart symbols and
their meanings are shown in the reference 3.
Create a flow chart that will perform the following task.
a. Create an array containing numbers from 1 to 50. Use the following line of code:
int nums []={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,
19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,48,49,50};
b. Initialize a variable called i to zero.
c. If i is less than the length of nums, then for each element nums [i] in the array nums,
check if nums [i] is divisible by 3
if no, print nums [i] on the serial monitor
add 1 to i
Notes on drawing the flow chart:
a. The connecting lines should be arcs, not straight lines.
b. The background color of the shapes should be white.
c. The fonts in the symbols should be Calibri size 10.
d. Hint 1: Create the shape, change its fill and fonts, then duplicate if necessary.
e. Hint 2: The number of symbols in the answer are:
Start/End x 2, Process x 3, Decision x 2, Document 1(for printing on serial monitor), Connectors 9
f. Hint 3: Try to arrange all the symbols in a vertical manner with Start at the top, and End at the bottom.
Write a sketch to perform the above task.
Notes:
a. You must use the "while" keyword, not the "for" keyword.
b. You should insert the following comments.
First comment should be "# Student Name & ID: CHAN Tai Man John 18012345S"
Insert five other comments to explain your code at the right places.
The output should look similar to the screen below.
please give me The flowchart
and the source code
Explanation of the flowchart
Learning Outcomes Use TinkerCAD to develop an

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Accounting Questions!