Question: NOTE: Answer MUST be in Arduino C code! Please use the existing code here and show changes clearly. I am needing to see a completed
NOTE: Answer MUST be in Arduino C code! Please use the existing code here and show changes clearly. I am needing to see a completed code.
undefined
Write the function proto-type for and function call to find_wind_type(). Copy the code below into the window and add your changes in BOLD. void setup( { Serial.begin(115200); // Open Serial Monitor char type; // output int speed; // input Serial.print("Input wind speed: "); // prompt while(Serial.available()==0); // wait for send speed = Serial.parseInt(); // store input Serial.println(speed); // echo print Serial.print(" Wind type = "); Serial.print(type); //display output } void loop08
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
