Compare commits

..

No commits in common. "5a5a15a160eb004fbcd1264be03138221f550afc" and "73a59225bc9134a29a91fb1a08e85606f7d2d699" have entirely different histories.

3 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,6 @@
* Prototype * Prototype
* Arduino Duemilanove * Arduino Duemilanove
* L298N shield V03 * L298N shield V03
* https://traction-design.be/home/arduino-l298n-shield-v03-from-flamingoeda-com/
* *
* Pin 13 = motor A or coil A + * Pin 13 = motor A or coil A +
* Pin 12 = motor A or coil A * Pin 12 = motor A or coil A
@ -25,12 +24,12 @@ void setup() {
void loop() { void loop() {
clockwise(); clockwise();
set_speed(250); set_speed(50);
delay(5000); delay(5000);
brake(); brake();
delay(2000); delay(2000);
counter_clockwise(); counter_clockwise();
set_speed(250); set_speed(100);
delay(5000); delay(5000);
brake(); brake();
delay(2000); delay(2000);

Binary file not shown.

View File

@ -123,7 +123,7 @@ module mount_plate_void () {
module mount_plate () { module mount_plate () {
Z = 1.5; Z = 1.5;
D = 7.5 + 1.5; D = 7.5 + 1.1;
MOUNT_X = 40; MOUNT_X = 40;
MOUNT_Y = 55; MOUNT_Y = 55;
@ -138,7 +138,7 @@ module mount_plate () {
translate([-MOTOR_MOUNT_X / 2, MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z); translate([-MOTOR_MOUNT_X / 2, MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z);
translate([MOTOR_MOUNT_X / 2, -MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z); translate([MOTOR_MOUNT_X / 2, -MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z);
translate([-MOTOR_MOUNT_X / 2, -MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z); translate([-MOTOR_MOUNT_X / 2, -MOTOR_MOUNT_Y / 2, 0]) motor_mount_void(D, Z);
translate([-(46 / 2) + 15 + 1, 0, 0]) cylinder(r = 15 / 2, h = 20, center = true, $fn = 60); translate([-(46 / 2) + 15, 0, 0]) cylinder(r = 13.9 / 2, h = 20, center = true, $fn = 60);
translate([MOUNT_X / 2, MOUNT_Y / 2, 0]) mount_plate_void(); translate([MOUNT_X / 2, MOUNT_Y / 2, 0]) mount_plate_void();
translate([-MOUNT_X / 2, MOUNT_Y / 2, 0]) mount_plate_void(); translate([-MOUNT_X / 2, MOUNT_Y / 2, 0]) mount_plate_void();
translate([MOUNT_X / 2, -MOUNT_Y / 2, 0]) mount_plate_void(); translate([MOUNT_X / 2, -MOUNT_Y / 2, 0]) mount_plate_void();
@ -168,7 +168,7 @@ module debug_assembled () {
// //
PART = "mount_plate"; PART = "debug";
if (PART == "slip_coupling") { if (PART == "slip_coupling") {
slip_coupling(); slip_coupling();