Bokena Series Pt 2 Blog 3 : DEI THIS ONE CHEM ENG OR COMP ENG
For this blog I will be going through, my experience in coding. HUH coding??? I thought you studying chem eng? Why got coding all? You ask me, then I ask who? To give a backstory to my coding adventures, We started off by learning the Arduino programming and applying the code to one of the Uno maker boards the school had provided. To teach y'all what I had learning during class, I will be showing you the code and going through the struggles I had when trying to reach this certain outcome from the Uno maker board. Input devices: I nterface a potentiometer analog input to maker UNO board and measure/show its signal in serial monitor Arduino IDE. The program/code that I have used and explanation of the code. The code is in writable format (not an image). Code/ program in writable format Explanation of the code int sensorValue = 0; void setup() { pinMode(A0, INPUT); pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(A0); digitalWrit...