How can you control a TT Motor 20210329 with an Arduino?
Hello,
How can I control a TT Motor 20210329 motor with just an Arduino? What code should I write if the power source should be on pin 13?
This is my current script:
#include <LiquidCrystal.h>
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
lcd.begin(16, 2);
pinMode(13,OUTPUT);
pinMode(13,HIGH);
}
void loop() {
lcd.print("Engine starts!");
for (int i = 9; i >= 0; i–) {
lcd.setCursor(1, 2);
lcd.print(i);
if (i==0){
lcd.clear();
lcd.setCursor(1,2);
lcd.print("Engine is on!");
}
delay(1000);
}
while (true);
}
Without power level/driver module not at all… The thing pulls around the 160mA and even more (ggf to 1.5A).. The Arduino creates only 20mA (max 40mA) on the output pin, so much too little…
In addition: A complete ext voltage supply is required at full load, as the arduino board max 500mA supplies over 5V-pin…
The code itself:
there is not… pinMode sets the type input (INPUT) or output (OUTPUT)…
To assign a pin a signal you use digitalWrite(Pinnumber/Name, HIGH/LOW)
Then you count a counter, but don’t set a pin status (digitalWrite)… So you’re no longer controlling the pin in the next code…
I wrote a comment on your previous question in which I call the reason why the engine is not concerned.