Engineer
ALGERIA • + Follow
Edit Project
Components
|
|
ATtiny26Lmicrochip
|
x 1 | |
|
|
LM2596S-12 |
x 1 | |
|
|
TPS5430DDARTI(德州仪器)
|
x 1 | |
|
|
MOC3041M |
x 1 | |
|
|
nxp bta41-600vnxp
|
x 1 | |
|
|
AC03-CS vishay 100ohmvishay
|
x 1 | |
|
|
ak10-530cvishay
|
x 1 |
Tools, APP Software Used etc.
|
KiCad 9.0 |
|
|
arduino IDEArduino
|
Description
motor starting using star delta device
my project is about making device that can be star 3 phase ac induction motor with high power using star delta method , the advance of my device is that can be compact ,low coast , and fast to wire it in the panel , with also thermal protection that the traditional using of contactor
Code
the code
Arduino
#define POT_PIN A1
#define SENSE_PIN A7
#define START_PIN 0
#define MAIN_PIN A2
#define STAR_PIN A6
#define DELTA_PIN A4
const float ADC_REF = 5.0;
const float OVER_VOLTAGE = 2.0;
bool motorRunning = false;
bool starActive = false;
unsigned long starStartTime = 0;
unsigned long starDuration = 0;
void setup() {
pinMode(START_PIN, INPUT);
pinMode(MAIN_PIN, OUTPUT);
pinMode(STAR_PIN, OUTPUT);
pinMode(DELTA_PIN, OUTPUT);
stopAll();
}
void loop() {
float senseVoltage = analogRead(SENSE_PIN) * ADC_REF / 1023.0;
if (senseVoltage > OVER_VOLTAGE) {
stopAll();
motorRunning = false;
return;
}
bool startSignal = digitalRead(START_PIN);
if (startSignal && !motorRunning) {
motorRunning = true;
starActive = true;
int potValue = analogRead(POT_PIN);
starDuration = map(potValue, 0, 1023, 0, 120000UL);
starStartTime = millis();
digitalWrite(MAIN_PIN, HIGH);
digitalWrite(STAR_PIN, HIGH);
digitalWrite(DELTA_PIN, LOW);
}
if (motorRunning && starActive) {
if (millis() - starStartTime >= starDuration) {
// Turn off star, turn on delta
digitalWrite(STAR_PIN, LOW);
digitalWrite(DELTA_PIN, HIGH);
starActive = false;
}
}
if (!startSignal && motorRunning) {
stopAll();
motorRunning = false;
}
}
void stopAll() {
digitalWrite(MAIN_PIN, LOW);
digitalWrite(STAR_PIN, LOW);
digitalWrite(DELTA_PIN, LOW);
}
Jan 31,2026
14 views
motor starting using star delta device
in industrial electrical panel doing star delta motor star can be coastlyand time consuming with this device can be fast and low prise
14
0
1
Published: Jan 31,2026
Standard PCB
Purchase
Donation Received ($)
PCBWay Donate 10% cost To Author
Copy this HTML into your page to embed a link to order this shared project
Copy
This work is licensed under a Standard Digital File License.
Digital files have a strict non-commercial, personal use only license.
You shall not share, sub-license, sell, rent, host, transfer, or distribute
in any way the digital file or 3D printed versions of this object, nor any
other derivative work of this object in its digital or physical format
(including remixes of this object).
You can not host these files on other digital platforms, web stores or cloud
repositories.
The objects may not be used in any way whatsoever in which you charge money,
collect fees.
- ✖ | No sharing or redistributing in any way of the 3D files or derivatives
- ✖ | No remixing
- ✖ | Non-commercial Use (only for personal use)
Under the
Standard Digital File
License.
Raspberry Pi 5 7 Inch Touch Screen IPS 1024x600 HD LCD HDMI-compatible Display for RPI 4B 3B+ OPI 5 AIDA64 PC Secondary Screen(Without Speaker)
BUY NOW- Comments(1)
- Likes(0)
Upload photo
You can only upload 5 files in total. Each file cannot exceed 2MB. Supports JPG, JPEG, GIF, PNG, BMP
0 / 10000
It looks like you have not written anything. Please add a comment and try again.
You can upload up to 5 images!
Image size should not exceed 2MB!
File format not supported!
View More
View More
VOTING
0 votes
- 0 USER VOTES
0.00
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Design
1/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Usability
2/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Creativity
3/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Content
4/4
More by Engineer
-
predective maintenance using machine learning
maintenace play major role in factory , it can make us gain money or lose it , so this why we need t...
-
motor starting using star delta device
my project is about making device that can be star 3 phase ac induction motor with high power using ...
-
sea monitoring for fishe farming
the project is about helping the fishe farmer who rise the fishes inthe ocean or seas to monitor th...
You may also like
-
ARPS-2 – Arduino-Compatible Robot Project Shield for Arduino UNO
67 0 0 -
A Compact Charging Breakout Board For Waveshare ESP32-C3
540 3 4 -
AI-driven LoRa & LLM-enabled Kiosk & Food Delivery System
529 2 0 -
-
-
-
ESP32-C3 BLE Keyboard - Battery Powered with USB-C Charging
742 0 1 -
-
mammoth-3D SLM Voron Toolhead – Manual Drill & Tap Edition
706 0 1 -
-
AEL-2011 Power Supply Module
1384 0 2







