Questions tagged [mechanical]
8 questions
7
votes
4 answers
Breadboard for kids
I am interested in teaching young kids how to build arduino projects. I was thinking that using a breadboard may be difficult for them, as the holes are all very close together. It is easy to put the pins in the wrong hole.
Are there any breadboards…
Alex K
- 229
- 2
- 8
5
votes
1 answer
Mechanical requirements for Arduino compatibility
If I want to design an Arduino-compatible board I guess I'll have to use the same outline, and connector positions to fit existing enclosures. (Beats me why they didn't choose a simple rectangular board, which would have been cheaper.) But I wonder…
Joris Groosman
- 1,191
- 3
- 11
- 26
2
votes
2 answers
Precise rotation (steering direction to a given angle) on obstacle avoidance robot
Forgive my lack of knowledge of some robotic related terms, but the way my two wheel drive robot steers is simply by having each wheel move at different speeds; for left, for example, the left wheel moves while the right one stays stationary for a…
Raed
- 173
- 4
1
vote
1 answer
Is there an equivalent to Grbl for Excellon PCB drilling?
For CNC milling we have code such as Grbl Controller in the PC, and Grbl itself in an Arduino, and these handle the appropriate G-code files. Is there an equivalent package to handle Excellon files and drive a 3-axis drilling machine?
Roger
- 11
- 1
0
votes
1 answer
Servo or motor with manual control
I am searching for a servo or motor with the ability to
easy manually controlling (turning) when power off.
What is the mechanism recommend to use?
Thank you for your answer.
Kvartu
- 33
- 2
- 6
0
votes
1 answer
Doubt in choosing the right DC motor?
Take this motor as an example - https://www.robotshop.com/en/12v-100rpm-583-oz-in-brushed-dc-motor.html
it has torque of 42kg.cm
I know all the calculation to find the payload of dc motor from here -…
Sultan Morbiwala
- 133
- 2
- 14
0
votes
2 answers
Are there fixed connectors for gpio?
Curently I am using these connectors for my prototype:
Ebay link
However, I need something more reliable so I can deliver the prototype to a user without to risk that the cables fall out of their pins.
Is there something else to use? I would like to…
mojovski
- 101
-1
votes
2 answers
Why do I see error in this code
NewPing sonar(TRIG_PIN, ECHO_PIN, MAX_DISTANCE);
AF_DCMotor motor1(1, MOTOR12_1KHZ);
AF_DCMotor motor2(2, MOTOR12_1KHZ);
AF_DCMotor motor3(3, MOTOR34_1KHZ);
AF_DCMotor motor4(4, MOTOR34_1KHZ);
Servo myservo;
boolean goesForward=false;
int…