Search models, users, collections, and posts

Print Profile(1)

All
P1S
X1 Carbon
X1E
A1
H2D
H2C
H2S
A2L
X1
H2D Pro
P2S
P1P
X2D
A1 mini

0.2mm layer, 2 walls, 15% infill
0.2mm layer, 2 walls, 15% infill
Designer
15 min
1 plate

Open in Bambu Studio
Boost
0
0
0
0
0
0
Released 

Description

this model is a school project I made. I have found many mess up in the design and I fixed it. I thought I could share this and make something out of it.

 

Part needed

 

for the motor you may need a solder kit or if you find another way.

 

you will need code for the Arduino so down lode a software called Arduino IDE. and the code is under if you find something already there just delete it then

 

 

 

int IN1pin = 8;

int IN2pin = 7;

int ENApin = 9;


 

#include <Wire.h>

#include <LiquidCrystal_I2C.h>


 

LiquidCrystal_I2C lcd(0x27,20,4);



 

void setup() {

  // put your setup code here, to run once:

  // LCD setup

   lcd.init();                      // initialize the lcd

  lcd.init();

  lcd.backlight();

  lcd.setCursor(4,0);

  lcd.print("READY");

  delay(2000);

  lcd.clear();

  lcd.setCursor(4,0);

  lcd.print("SET!");

  delay(2000);

  lcd.clear();

  lcd.setCursor(4, 0);

  lcd.print("GO!!!");


 

  // Motor setup

  pinMode(IN1pin, OUTPUT);

  pinMode(IN2pin, OUTPUT);

  pinMode(ENApin, OUTPUT);


 

  delay(2000); // give time to see "GO"


 

  // Start motor

  digitalWrite(IN1pin, LOW);

  digitalWrite(IN2pin, HIGH);

 

  analogWrite(ENApin, 100);

  delay(30000);

 

  digitalWrite(IN1pin, LOW);

  digitalWrite(IN2pin, LOW);

}


 

void loop() {

  // put your main code here, to run repeatedly:

 

 

}

 a video for the correct wiring 

 

 

 

 

Comment & Rating (0)

(0/1000)

License

This user content is licensed under a Standard Digital File License.

You shall not share, sub-license, sell, rent, host, transfer, or distribute in any way the digital or 3D printed versions of this object, nor any other derivative work of this object in its digital or physical format (including - but not limited to - remixes of this object, and hosting on other digital platforms). The objects may not be used without permission in any way whatsoever in which you charge money, or collect fees.