next I will develop myself. because I don't understand the c language and its flow. because previously I only understood grbl arduino.
because yesterday I tried to make the init axis and move the axis when I clicked init, the axis managed to go up, but the DAC still has voltage, even though what I want is when the axis goes up and reaches the target, the DAC must be 0 volts.
this is the c program I created after configuring the axes:
Code: Select all
while (CheckDone (0) || CheckDone (1))
{
Move (0, 1000);
Move (1, 1000);
DAC (2, 1024);
}
3.4 volts to go down, and 5 volts to go up.