14 mechanical design, machine design

We developed this activity in team, and honestly I have to tell that finally it works for this! At first some of us was focused more of one or another part ( for example Rafa and Patricio cutted, and assembled the machine and Ana Karyna, Fernando and me, we were focused more to make operate the machine, trying to activate the gestalt nodes … checking all the connections … making the fab net … investigating the drivers … thinking about the use of the machine);

If I have to talk about my specific personal participation, maybe the most important part was to collaborate on develop the codes and investigate about the drivers that we used finally, but I did this this two things in collaboration with the others.

Here our PCB gestalt, we have the theory that are physically damaged.

IMG_4368(1)

Another component that we think is corrupt is the FTDI cable.

IMG_4369(1)

Here is some evidence of failed connections.

IMG_6284

In the end we decided to use other drivers, here are some images of Easy driver, L298N and TB6560V2.

FullSizeRender-7

This is the final code, it worked.

  1. int P = 8;
  2. int D = 10;
  3. int V = 50;
  4. int P1 = 30000;
  5. int P2 = 300;
  6. void setup() {
  7. pinMode(D, OUTPUT);
  8. pinMode(P, OUTPUT);
  9. }
  10. void pasos(boolean dir,int pasos){
  11. digitalWrite(D,dir);
  12. delay(100);
  13. for(int i=0;i<pasos;i++){
  14. digitalWrite(P, HIGH);
  15. delayMicroseconds(100);
  16. digitalWrite(P, LOW);
  17. delayMicroseconds(100);
  18. }
  19. }
  20. void loop(){
  21. pasos(true,P1);
  22. delay(V);
  23. pasos(false,P2);
  24. delay(V);
  25. }

and here the finished machine

Scanny 0.0

FullSizeRender-8

 

FullSizeRender (6)

The result:

 

see more: http://fabacademy.org/archives/2015/sa/labs/fablabmonterrey/mechanical_design_machine_design.html