Posts
Protecting INDUCTION MOTOR from single PHASING and TEMPERATURE ( PPT )
- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3BMvoIJp5sIAMlqqTCjes9FSnbtSPa00EwOfkZ6zfO7LNaYbxRCNHK_lk7vba_pZC-9E8EICpBnDUfZaCo90Q5o1wt1AkTS0CxTrfsdMZ12xRMxftaFvfiFSWqTCkQnN4DtkeuvTRA8s/w400-h225/mqdefault.jpg)
5HP Motor speed control by arduino. By using Arduino we control 5HP Dc motor in easy way CIRCUIT DIAGRAM : ARDUINO CODE: #include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); const int currentPin = A0; const int pot=A1; int sensitivity = 66; int adcValue= 0; int adcValuee= 0; int offsetVoltage = 2500; double adcVoltage = 0; double currentValue = 0; double sensorValue=0; int ledPin=13; float ton=0; float toff=0; float duty=0; void setup() { Serial.begin(9600); lcd.begin(16, 2); lcd.print("DC speed control "); lcd.setCursor(0,1); lcd.print(" with Arduino "); pinMode(ledPin,OUTPUT); delay(400); lcd.clear(); } void loop() { adcValue = analogRead(currentPin); adcValuee = analogRead(pot); ton=1024-adcValuee; toff=adcValuee; float y=ton=+toff; float xx...