BLDC_SHIELD_TLE9879 driving DC motor.

Announcements

Webinar: Integrated solutions for smaller, simpler low-voltage motor control design.
Join the webinar to experience!

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
User19138
Level 1
Level 1
The question is - how can I drive a DC motor with the board in H-Bridge topology?
0 Likes
2 Replies
User17857
Level 3
Level 3
First like received
hello,

only thing you have to do is to supply power to the dc motor by activating one of the phase of h bridge.you can only activate phase 1 in the h bridge for one direction . for the reverse direction you can activate phase 2
the code below is for arm keil. i do not know how to do it in arduino. but i think you can find it.

BDRV_Set_Channel(HS1, Ch_On);//for firstdirection phase 1
BDRV_Set_Channel(LS1, Ch_On);

BDRV_Set_Channel(HS2, Ch_On);// for reverse direction
BDRV_Set_Channel(LS2, Ch_On);
0 Likes
User19138
Level 1
Level 1
Thank you!
0 Likes