Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Hardi Kurnianto
Published

Traffic Control System Design on Island Pedestrian Bridge

Prototype design of traffic control systems on pedestrian bridges with additional safety and security system features.

BeginnerProtip284
Traffic Control System Design on Island Pedestrian Bridge

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1

Story

Read more

Custom parts and enclosures

part_vch_7F5ysfkA1t.SLDPRT

Schematics

whatsapp_image_2022-03-08_at_19_14_24_yDAl6fDL6K.jpeg

File missing, please reupload.

Code

BOMBON_BRIDGE.ino

Arduino
#include <Servo.h>
Servo sj,sg;

const int buzz= 13 ;
const int merah= 10 ;
const int kuning= 9 ;
const int ijo= 8 ;
const int svi= 7 ;
const int svo= 6 ;
const int ssi= 5 ;
const int sso= 4 ;

int s1=0,s2=0,s3=0,s4=0;
int jumlahmobil=0;
int flag=0,flag1=0,flag2=0;

void setup() 
{
 Serial.begin(9600);
 sj.attach(12); //posawal=5 & posakhir=105
 sg.attach(11); //posawal=90 & posakhir=0
 pinMode(svi, INPUT_PULLUP); pinMode(svo, INPUT_PULLUP); 
 pinMode(ssi, INPUT_PULLUP); pinMode(sso, INPUT_PULLUP);
 pinMode(merah, OUTPUT); pinMode(kuning, OUTPUT); pinMode(ijo, OUTPUT); pinMode(buzz, OUTPUT);
 sg.write(0); sj.write(5);
 digitalWrite(ijo, HIGH);
}

void loop() 
{
 s1=digitalRead(svi); s2=digitalRead(svo); 
 s3=digitalRead(ssi); s4=digitalRead(sso);
 if(s1==LOW && flag==0){jumlahmobil=jumlahmobil+1; Serial.println(jumlahmobil);flag=1;}
 if(s1==HIGH&& flag==1){flag=0;}
 delay(10);
 if(s2==LOW && flag1==0){jumlahmobil=jumlahmobil-1; if(jumlahmobil<0){jumlahmobil=0;}Serial.println(jumlahmobil);flag1=1;}
 if(s2==HIGH&& flag1==1){flag1=0;}
 
 if(s3==LOW && jumlahmobil == 0 && flag2==0)
  {
    digitalWrite(ijo, LOW);
    sg.write(90);
    for(int jem=5; jem<106; jem++){sj.write(jem); digitalWrite(kuning, HIGH); digitalWrite(13, HIGH); delay(50); digitalWrite(kuning, LOW); digitalWrite(13, LOW); delay(25);}
    digitalWrite(merah, HIGH);
    flag2=1;
   }

 if(s3==LOW && jumlahmobil != 0) {Serial.println("STOP");}

 if(s4==LOW && flag2==1)
    {
     for(int jem=106; jem>5; jem-=1)
     {
      sj.write(jem); 
      digitalWrite(kuning, HIGH); 
      digitalWrite(13, HIGH);
      delay(50); 
      digitalWrite(kuning, LOW);
      digitalWrite(13, LOW);
      delay(25);
     }
     sg.write(0);
     digitalWrite(ijo, HIGH);
     digitalWrite(merah, LOW);
     flag2=0;
    }
}

Credits

Hardi Kurnianto
17 projects • 16 followers
Master student at Intelligent Control and Systems Engineering Department
Contact

Comments

Please log in or sign up to comment.