ArduZero

by Portal6910 in Circuits > Arduino

14 Views, 0 Favorites, 0 Comments

ArduZero

promicro.jpg

This Device Is INCREDIBLE!!! Like Hand-Made Flipper Zero! And It's Easy To Make! Let's Begin!!!

Supplies

First: We Need An Arduino Pro Micro.

THATS IT :D

Coding the Arduino

  1. First, Install Arduino IDE Program For Coding Interface.
  2. Second, Connect The Arduino To IDE (IDE May Shows "Arduino Leonardo" To Your Device, No Problem)
  3. Third, Paste This Code To IDE:
#include <Mouse.h>
String buffer = "";
void setup() {
Serial.begin(115200);
Mouse.begin();
Serial.println("✅ Arduino Is Ready");
Serial.println("🎯 Program Can Be Start");
}
void loop() {
while (Serial.available()) {
char c = Serial.read();
if (c == '\n') {
handleCommand(buffer);
buffer = "";
} else {
buffer += c;
}
}
}
void handleCommand(String cmd) {
cmd.trim();
if (cmd == "START") {
Serial.println("▶️ System Started");
return;
}
if (cmd == "STOP") {
Serial.println("⏸ System Stopped");
return;
}
int comma = cmd.indexOf(',');
if (comma > 0) {
int dx = cmd.substring(0, comma).toInt();
int dy = cmd.substring(comma + 1).toInt();
dx = constrain(dx, -12, 12);
dy = constrain(dy, -12, 12);

Mouse.move(dx, dy);
return;
}
if (cmd == "CLICK") {
Mouse.press(MOUSE_LEFT);
delay(8);
Mouse.release(MOUSE_LEFT);
return;
}
if (cmd.length() > 0) {
Serial.print("⚠️ Unknown Command: ");
Serial.println(cmd);
}
}

And Upload.

Installing Program

Now, We'll Install Python!

Go To Microsoft Store And Search For "Python".

Download "Python 3.13".

And Download ArduZero.py

Downloads

Program Setup

Connect Arduino Pro Micro To PC.

Now, Perform The Win + X Combination, Click "Device Manager", Click "Connection Points (COM and LPT)".

Look For Your Arduino Pro Micro's Name.

Then, Open Program (It May Update Itself) And Write Your Arduino's Name, Example "Arduino Leonardo" or "Arduino Micro".

How to Use

Congratulations! Now You Have A ArduZero!

What It Can Do (For Now)?

It Can Be Aimbot! [Trained With CS:GO Player Data's. Work's Perfect On CS:GO]

I Will Add More Features Soon.

Bye!!!

[NOTE: This device is for educational purposes only. It should not be used for malicious purposes. I accept no responsibility in such cases. Please take this into consideration.]