About 59,900 results
Open links in new tab
  1. Line follower bot with IR sensor array - Arduino Forum

    Mar 4, 2019 · Hello everyone. This is my first time working with an arduino. I'am building a line follower bot using an IR array which has 8 IR sensors. I'am using a L293D motor shield with 2 motors connected to input 1 and 4 of the shield. I imported the adafruit motor shield library and ran its motor test example and it worked fine. Here's the example code: #include <AFMotor.h> AF_DCMotor motor(4); void ...

  2. 16X4 pixel IR thermal array - Showcase - Arduino Forum

    Oct 8, 2012 · Update 19.02.2015: I attached the code to interface with the new MLX90621 sensor. It uses the i2c_t3 library from the Teensy3, but it should not be hard to transform it to use the standard Wire library The MLX90621 is an upgraded version of the MLX90620. It features a 4x faster measurement speed of or –equivalently- a 2x lower noise level. Check out this link for more information. Original ...

  3. IR Sensor array - Sensors - Arduino Forum

    Nov 13, 2018 · hello i brought IR sensor array and i wish to make line following robo with audino i have attached screenshot of my ir array , it has IR pin , D1 to D8 pin , VCC and GND what is the meaning of "IR pin". how i connect with aurdino uno ? is …

  4. Arduino line maze solver - Robotics - Arduino Forum

    Dec 6, 2021 · Hi Everyone, I am trying to make an arduino line maze solver robot. I am using an arduino UNO, a L298N and a 5 IR sensor array. I am using analogWrite(125) for both enable pins to reduce the speed of the robot. I am using 125 because below this the motors dont move and create a buzzing sound. The problem I am facing is that the robot's motor's response time is problematic. Some times one motor ...

  5. Using Digital pins for IR 5 sensor array on Robotic car

    Apr 19, 2024 · Hello: I am working with a group of students to utilize Osoyoo Robotic cars that are Arduino Uno-based. The code is being created using Arduino IDE either 1.8.18 or 2.3.0 on Mac desktop computers. The students initially used a 5-array IR sensor from the same company through A0-A4 analog pins andthe 3.3V / ground pins for power, and we got basic Line Following working. The next task is to ...

  6. Line Following Robot with 5 IR Sensors Coding - Arduino Forum

    Sep 15, 2016 · Hello there, I am making arduino powered line following robot with 5 IR sensors connected in motor driver. I wanna know the code for the 5 sensors. In white portion >> move In black portion >> stop Plz help me in thi…

  7. Help in displaying Sensor Values in Array - Arduino Forum

    Dec 17, 2021 · Hello, I am trying to make a simple Robot that moves based on the reading from 5 IR Sensors. I don't want the code to be large or time consuming so I wanted the readings to be stored in an Array and that when I call the array it prints the value in Serial Monitor. int Sensor1 = 2; int Sensor2 = 3; int Sensor3 = 4; int Sensor4 = 5; int Sensor5 = 6; void setup() { Serial.begin(38400); pinMode ...

  8. Line sensor (5 ir sensors) - Robotics - Arduino Forum

    May 8, 2018 · Think about what "on the line" means, in terms of sensor output. If you put the sensor pins in an array, and read all 5 sensors ONCE on each pass through loop, and put the values in one variable, using bitSet(), it would be MUCH simpler to write your program. You'd get a value like b00000 (or b11111) when the robot was on (or off) the line.

  9. Calibrating an array of sensors - Arduino Forum

    May 31, 2020 · Ok, so the short of it I made an array of IR transistor sensors but readings across them isn't equal, each sensor reading corresponds to a color of an LED in a strip. Making each LED different color in the default state, making each LED slightly or completely different color, when they supposed to be the same 😕 Is there a way to calibrate the array in the program, #include <FastLED.h> # ...

  10. pid control using arduino for line follower robot......

    Feb 27, 2018 · So, the setpoint is 0 (no difference between the two sensor readings). The input is the difference between the readings (can be positive or negative) and the output will be used to determine how much faster one motor turns than the other motor. Notice that the output says nothing about how fast the robot is moving.

Refresh