LABVIEW Research:- This channel For Labview basic projects interlink with different hardware, Which is the product of National Instruments. NI LabVIEW is a graphical programming environment used by millions of engineers to develop measurement, test, and control systems using graphical icons and wires and Controls display in a Block diagram and Front panel.
WORK on Exam Preparation:- CLD EXAM
Make tutorials Step to step:-2020
I am Pardeep Kumar
***********************Publish 18 Patents.****************** *******************Publish 4 Research paper**************** *****************10 Book Publish (Technical) ***************
Lots of projects make in Labview, Arduino, ESP8266, ESP32, PLC, Raspberry-Pi, IoT.
It is a great project and the efforts are admirable. Try to work on your speaking skills because if people are going to watch it for 15-20 mins, they might get annoyed and search for someone else.
#define dirPin 2 #define stepPin 3 #define stepsPerRevolution 482 void setup() { // Declare pins as output: pinMode(stepPin, OUTPUT); pinMode(dirPin, OUTPUT); // Start serial communication: Serial.begin(9600); } void loop() { // Set the spinning direction clockwise: digitalWrite(dirPin, HIGH); // Spin the stepper motor 1 revolution slowly: for (int i = 0; i < stepsPerRevolution; i++) { // These four lines result in 1 step: digitalWrite(stepPin, HIGH); delay(10); digitalWrite(stepPin, LOW); delay(10); } // Read analog values and print them via serial communication: int a0Value = analogRead(A0); // Read the value from analog port A0 int a1Value = analogRead(A1); // Read the value from analog port A1 Serial.print("Analog port A0 value: 3.3"); Serial.println(a0Value); Serial.print("Analog port A1 value: 0"); Serial.println(a1Value); delay(5000); } plz make a visa labview code for this program