Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arduino Uno #12032

Closed
Krishna8113 opened this issue Feb 15, 2025 · 1 comment
Closed

Arduino Uno #12032

Krishna8113 opened this issue Feb 15, 2025 · 1 comment
Assignees
Labels
Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug

Comments

@Krishna8113
Copy link

//Ingeimaks

#include <Servo.h>

//definiamo i servomotori orizzontale e verticale

Servo servohori;

int servoh = 0;

int servohLimitHigh = 160;

int servohLimitLow = 60;

Servo servoverti; 

int servov = 0; 

int servovLimitHigh = 160;

int servovLimitLow = 60;

//Pin fotoresistenze

int ldrtopl = 2; //top left 

int ldrtopr = 1; //top right 

int ldrbotl = 3; // bottom left 

int ldrbotr = 0; // bottom right 

void setup () 

{

 servohori.attach(10);

 servohori.write(60);

 servoverti.attach(9);

 servoverti.write(60);

 Serial.begin(9600);

 delay(500);

 

}

void loop()

{

 servoh = servohori.read();

 servov = servoverti.read();

 //Valore Analogico delle fotoresistenza

 int topl = analogRead(ldrtopl);

 int topr = analogRead(ldrtopr);

 int botl = analogRead(ldrbotl);

 int botr = analogRead(ldrbotr);

 // Calcoliamo una Media

 int avgtop = (topl + topr) ; //average of top 

 int avgbot = (botl + botr) ; //average of bottom 

 int avgleft = (topl + botl) ; //average of left 

 int avgright = (topr + botr) ; //average of right 

 if (avgtop < avgbot)

 {

   servoverti.write(servov +1);

   if (servov > servovLimitHigh) 

    { 

     servov = servovLimitHigh;

    }

   delay(10);

 }

 else if (avgbot < avgtop)

 {

   servoverti.write(servov -1);

   if (servov < servovLimitLow)

 {

   servov = servovLimitLow;

 }

   delay(10);

 }

 else 

 {

   servoverti.write(servov);

 }

 

 if (avgleft > avgright)

 {

   servohori.write(servoh +1);

   if (servoh > servohLimitHigh)

   {

   servoh = servohLimitHigh;

   }

   delay(10);

 }

 else if (avgright > avgleft)

 {

   servohori.write(servoh -1);

   if (servoh < servohLimitLow)

    {

    servoh = servohLimitLow;

    }

   delay(10);

 }

 else 

 {

   servohori.write(servoh);

 }

 delay(50);

}

@per1234 per1234 self-assigned this Feb 15, 2025
@per1234
Copy link
Collaborator

per1234 commented Feb 15, 2025

Hi @Krishna8113. Thanks for your interest in this open source project. This issue tracker is only to be used to report bugs or feature requests specific to the Arduino IDE project. Your issue is not a bug report or a feature request, so it is inappropriate. Please don't submit inappropriate issues to Arduino's repositories.

If you would like to share your project, you can publish it in your own GitHub repository, or on Arduino Project Hub:

https://projecthub.arduino.cc/

If you would like to request assistance with your project, or discuss any subject related to Arduino, you can use Arduino Forum:

https://forum.arduino.cc/

@per1234 per1234 closed this as not planned Won't fix, can't repro, duplicate, stale Feb 15, 2025
@per1234 per1234 added the Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug label Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug
Projects
None yet
Development

No branches or pull requests

2 participants