ELECTRICAL
PROJECTS.

The engineering side of PutiMach — microcontrollers, servos, circuits, and instrumented experiments on the road to robotics and mechatronics.

Arduino Uno · C/C++ · 3× Servo Control

3-DOF ROBOTIC ARM

A three-degree-of-freedom robotic arm driven by an Arduino Uno — base rotation, elbow articulation, and gripper actuation on three PWM servo channels, sequenced in C++ with tuned sweep timing for smooth, repeatable pick-and-place motion.

// 3DOF_Final.ino — base / middle / grip servo sequencing
#include <Servo.h>

Servo base;   // pin 9  — base rotation 0–180°
Servo middle; // pin 5  — elbow 0–80°
Servo grip;   // pin 6  — gripper 30–95°

void loop() {
  for(i = 0; i <= 180; i++){ base.write(i);   delay(7);  }
  for(j; j <= 80;  j++){ middle.write(j); delay(25); }
  for(k; k >= 30;  k--){ grip.write(k);   delay(40); }
}

CIRCUIT ANALYSIS

Electric Circuit Analysis coursework at Georgia State (Regents Engineering Pathway) — DC/AC network analysis, Kirchhoff's laws, and equivalent circuits — alongside Physics I & II with labs (grade A).

KVL / KCLTheveninAC & DCMultimeter & scope

INSTRUMENTED PHYSICS LABS

A full lab sequence — Atwood's machine, collisions, rotational dynamics, harmonic motion, waves — captured with sensors and analyzed in Python: pandas, matplotlib, and Jupyter notebooks for curve fitting and error analysis.

PythonJupyterpandasData acquisition

MECHATRONICS, NEXT

Currently taking Statics, Differential Equations, and Electric Circuit Analysis — building toward research and design work in robotics, mechatronics, and mechanical design.

RoboticsServo controlEmbedded CSolidWorks

TOOLBOX

Arduino IDE, breadboarding and PWM servo drive, basic sensor integration, Python and Java fundamentals, MATLAB-style numerical analysis in notebooks, and CAD for enclosures and mechanisms.

ArduinoPWMBreadboardingJava