Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Arduino Codes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Medics
Arduino Codes
Commits
8023e0d2
Commit
8023e0d2
authored
1 week ago
by
mhby1g21
Browse files
Options
Downloads
Patches
Plain Diff
fixed directions
parent
e8749b7f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wifi-integrated.ino
+22
-24
22 additions, 24 deletions
wifi-integrated.ino
with
22 additions
and
24 deletions
wifi-integrated.ino
+
22
−
24
View file @
8023e0d2
...
...
@@ -186,10 +186,10 @@ void loop() {
// Move Forward - Using the exact structure from Medical_V2.ino
void
moveForward
()
{
// Set direction pins first
digitalWrite
(
IN2
,
HIGH
);
digitalWrite
(
IN1
,
LOW
);
digitalWrite
(
IN4
,
HIGH
);
digitalWrite
(
IN3
,
LOW
);
digitalWrite
(
IN2
,
LOW
);
digitalWrite
(
IN1
,
HIGH
);
digitalWrite
(
IN4
,
LOW
);
digitalWrite
(
IN3
,
HIGH
);
Direction
=
1
;
// Then apply IMU control if available
...
...
@@ -205,10 +205,10 @@ void moveForward() {
// Move Backwards - Using the exact structure from Medical_V2.ino
void
moveBackward
()
{
// Set direction pins first
digitalWrite
(
IN2
,
LOW
);
digitalWrite
(
IN1
,
HIGH
);
digitalWrite
(
IN4
,
LOW
);
digitalWrite
(
IN3
,
HIGH
);
digitalWrite
(
IN2
,
HIGH
);
digitalWrite
(
IN1
,
LOW
);
digitalWrite
(
IN4
,
HIGH
);
digitalWrite
(
IN3
,
LOW
);
Direction
=
-
1
;
// Then apply IMU control if available
...
...
@@ -217,36 +217,34 @@ void moveBackward() {
}
else
{
// Without IMU, just use basic speed control
analogWrite
(
ENA
,
SPEED
);
analogWrite
(
ENB
,
SPEED
);
analogWrite
(
ENB
,
SPEED
);
}
}
// Turn
Lef
t - Using the exact structure from Medical_V2.ino
void
turn
Lef
t
()
{
digitalWrite
(
IN2
,
HIGH
);
// Turn
Righ
t - Using the exact structure from Medical_V2.ino
void
turn
Righ
t
()
{
digitalWrite
(
IN2
,
LOW
);
// Left motor stopped
digitalWrite
(
IN1
,
LOW
);
digitalWrite
(
IN4
,
LOW
);
digitalWrite
(
IN3
,
LOW
);
digitalWrite
(
IN4
,
LOW
);
// Right motor forward (per reversed convention)
digitalWrite
(
IN3
,
HIGH
);
Direction
=
0
;
// No IMU control for turning
analogWrite
(
ENA
,
SPEED
);
analogWrite
(
ENB
,
0
);
analogWrite
(
ENA
,
0
);
// Left motor stopped
analogWrite
(
ENB
,
SPEED
);
// Right motor active
}
// Turn Right - Using the exact structure from Medical_V2.ino
void
turnRight
()
{
digitalWrite
(
IN2
,
LOW
);
digitalWrite
(
IN1
,
LOW
);
digitalWrite
(
IN4
,
HIGH
);
// Turn Left - Using the exact structure from Medical_V2.ino
void
turnLeft
(
IN2
,
LOW
);
// Left motor forward (per reversed convention)
digitalWrite
(
IN1
,
HIGH
);
digitalWrite
(
IN4
,
LOW
);
// Right motor stopped
digitalWrite
(
IN3
,
LOW
);
Direction
=
0
;
// No IMU control for turning
analogWrite
(
ENA
,
0
);
analogWrite
(
ENB
,
SPEED
);
analogWrite
(
ENA
,
SPEED
);
// Left motor active
analogWrite
(
ENB
,
0
);
// Right motor stopped
}
// Using the exact IMU_Control from Medical_V2.ino
void
IMU_Control
()
{
// Update IMU data
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment