can you make a video of how you assemble the robot, please?
@AramPerez7 ай бұрын
I’m sorry but I no longer have the instructions on how to build it.
@SlowedandReverdSounds17 ай бұрын
Hello how are you? How's everything going? It's to know if you still have the codes but in EV3 ofnow, I hope you respond as quickly as you can please
@AramPerez7 ай бұрын
Sorry, I don’t have an EV3 so I can’t create code for it. You can look at the MBasic code and adapt it.
@shawnbowser42608 ай бұрын
Where did you get the wall pieces to make the maze?
@AramPerez8 ай бұрын
The place I was consulting at had them. Originally they connected via some posts with magnets. I designed and 3D printed new connectors. The files might be on Thingiverse under TechTown.
@01aragog7810 ай бұрын
could it stop before hitting the walls that would be better i think and maybe you can do this by increasing sensitivity on sensor or by increasing deceleration. let me know if it will work or not because im going to try your code
@AramPerez9 ай бұрын
You cannot adjust the sensitivity of the sensor. You can move slower if you want.
@pepsisemi276110 ай бұрын
Du bist ein ayri
@hectormachado1395 Жыл бұрын
Hello, do you have in any payment portal, the assembly of the prototype and the development but not with code but with ev3 home edition blocks?
@AramPerez Жыл бұрын
Sorry no.
@carolynmbelwa7692 Жыл бұрын
How do u do this in spike😅🥲😭
@AramPerez Жыл бұрын
Sorry, I don’t have a Spike. I don’t know if the people that developed EV3Basic will do a SpikeBasic. But the logic is simple: 1) Move forward until a wall is detected. 2) Take a distance measurement from both the left and right sides. 3) Turn in the direction of the longest distance. 4) Go to step 1. Of course you need to also detect the end of the maze.
@VuTran-fc2rg Жыл бұрын
how to program this maze solving robot please because i really like your robot so can you make a video how to program this robot please. Thank you!!! 🙏
@AramPerez Жыл бұрын
See the description, links to the code are there.
@VuTran-fc2rg Жыл бұрын
Can you program the maze robot? I am 8 year old. Can you make a video about how to program the maze robot. Thank you 🙏
@VuTran-fc2rg Жыл бұрын
And can you tell me the code e
@AramPerez Жыл бұрын
@@VuTran-fc2rg I’m very sorry but I don’t have access to a EV3 robot anymore.
@aditadas36 Жыл бұрын
How did you build it?
@AramPerez Жыл бұрын
I don't remember exactly but just followed a build of a two motor with a caster wheel up front. I did add the "bumper" around the robot to prevent the wires from catching.
@CountryBallUKEdits596 Жыл бұрын
imagine hearing the looking sound at night...
@winthropdc1 Жыл бұрын
Good Job, This would be a good basis for a Maze Rescue robot for the Robocup Junior Australia competition. I also like that you used EV3Basic as that is my preferred development tool for EV3 robots.
@TheGolden_A1 Жыл бұрын
I can't run the .SB file is there a .EV3 file for it?
@AramPerez Жыл бұрын
As stated in the description, the program requires SmallBasic and EV3Basic. I've added the links to both programs on GitHub.
@gabrielaguadalupemurciachi362 Жыл бұрын
Que programación uso
@AramPerez Жыл бұрын
El robot usa una versión de Scratch de la compañía MakeBlock (www.makeblock.com/). No se si todavía venden ese modelo.
@lindoneimontenegro82762 жыл бұрын
do you have the code in python? thanks
@AramPerez2 жыл бұрын
Sorry I don’t have access to an EV3 robot any more. I haven’t checked if the EV3 supports Python.
@bobzelensky5414 Жыл бұрын
from ev3dev2.motor import OUTPUT_A, OUTPUT_B, MoveTank, SpeedPercent from ev3dev2.sensor import INPUT_1, INPUT_2, INPUT_3, UltrasonicSensor from ev3dev2.sound import Sound # Initialisation des variables stop_distance = 60 slow_distance = stop_distance + 30 turn_speed = 30 fast_forward_speed = -50 slow_forward_speed = -20 # Initialisation des capteurs et des moteurs tank_drive = MoveTank(OUTPUT_A, OUTPUT_B) us_sensor = UltrasonicSensor(INPUT_1) sound = Sound() # Fonction pour obtenir la distance de l'obstacle en face def get_distance(): return us_sensor.distance_centimeters # Fonction pour tourner à gauche def turn_left(): tank_drive.on_for_degrees(SpeedPercent(-turn_speed), SpeedPercent(turn_speed), 360) # Fonction pour tourner à droite def turn_right(): tank_drive.on_for_degrees(SpeedPercent(turn_speed), SpeedPercent(-turn_speed), 360) # Début du programme principal tank_drive.on(SpeedPercent(fast_forward_speed), SpeedPercent(fast_forward_speed)) while True: distance = get_distance() if distance <= stop_distance: tank_drive.stop() sound.beep() if distance <= 10: turn_left() else: turn_right() tank_drive.on(SpeedPercent(fast_forward_speed), SpeedPercent(fast_forward_speed)) elif distance <= slow_distance: tank_drive.on(SpeedPercent(slow_forward_speed), SpeedPercent(slow_forward_speed))
@wolfgangr.32682 жыл бұрын
Well done!
@AramPerez2 жыл бұрын
Thanks!
@wolfgangr.32682 жыл бұрын
Can you do it with the previous model?
@AramPerez2 жыл бұрын
Which previous model? You should be able to adapt the software to any other model.
@wolfgangr.32682 жыл бұрын
@@AramPerez You need an additional distance sensor (pivotting or side-mounted) as turns are often inaccurate. Is there sth. like a gyro sensor to improve this?
@AramPerez2 жыл бұрын
@@wolfgangr.3268 Even that won't necessarily help unless you use an expensive gyro. See my other video of an Lego EV3 solving a similar maze that does use a gyro for turning: kzbin.info/www/bejne/iKCahWanZpmoers. I used a different algorithm to solve the maze and I used the color sensor to detect the end of the maze.
@monicakenfack38152 жыл бұрын
THIS IS WAY TOO DOPE!! Do you have the code in the latest lego software? that will be the mindstorm home 1.5
@AramPerez2 жыл бұрын
Sorry I don’t have access to any EV3 robots. You should be able to look at the BASIC code and convert it to the Lego software.
@coolbrorett2 жыл бұрын
really cool. What is you build a mindstorms robot that scans the maze and makes it first try?
@AramPerez2 жыл бұрын
It would be possible but I no longer have access to any EV3 robots. ☹️
@coolbrorett2 жыл бұрын
@@AramPerez rip
@niniliumify2 жыл бұрын
Wait for It!...
@ahmedgamberli22502 жыл бұрын
It's too simple to build this robot, but the thing you did is amazing!
@AramPerez2 жыл бұрын
Thanks!
@karenbell48593 жыл бұрын
Too coo! How did you make the black line? Marker or tape? If tape, what kind? I’ve read that if it’s too shiny it won’t work.
@AramPerez3 жыл бұрын
It’s just plain black electrical tape. I haven’t had any problems with it being too shiny.
@Raviteja_Vlogs3 жыл бұрын
Plz provide code?
@AramPerez3 жыл бұрын
See the description for a link to the code.
@netherlandsball8613 жыл бұрын
The last part is amazing
@AramPerez3 жыл бұрын
Thanks, glad you liked it!
@Capucco4 жыл бұрын
Hello is it possible to get the program of it ?
@AramPerez4 жыл бұрын
Look in the description.
@deangat13124 жыл бұрын
hello, can I have the instructions of how to build this robot, I mean, which part needs to connect to which part and how?
@AramPerez4 жыл бұрын
Sorry, as I stated in other replies, I don’t have the instructions.
@tonyletizia28734 жыл бұрын
Awesome dude
@AramPerez4 жыл бұрын
tony, thanks!
@connorg99605 жыл бұрын
Please share the program
@AramPerez4 жыл бұрын
Please see the description.
@bobzelensky5414 Жыл бұрын
from ev3dev2.motor import OUTPUT_A, OUTPUT_B, MoveTank, SpeedPercent from ev3dev2.sensor import INPUT_1, INPUT_2, INPUT_3, UltrasonicSensor from ev3dev2.sound import Sound # Initialisation des variables stop_distance = 60 slow_distance = stop_distance + 30 turn_speed = 30 fast_forward_speed = -50 slow_forward_speed = -20 # Initialisation des capteurs et des moteurs tank_drive = MoveTank(OUTPUT_A, OUTPUT_B) us_sensor = UltrasonicSensor(INPUT_1) sound = Sound() # Fonction pour obtenir la distance de l'obstacle en face def get_distance(): return us_sensor.distance_centimeters # Fonction pour tourner à gauche def turn_left(): tank_drive.on_for_degrees(SpeedPercent(-turn_speed), SpeedPercent(turn_speed), 360) # Fonction pour tourner à droite def turn_right(): tank_drive.on_for_degrees(SpeedPercent(turn_speed), SpeedPercent(-turn_speed), 360) # Début du programme principal tank_drive.on(SpeedPercent(fast_forward_speed), SpeedPercent(fast_forward_speed)) while True: distance = get_distance() if distance <= stop_distance: tank_drive.stop() sound.beep() if distance <= 10: turn_left() else: turn_right() tank_drive.on(SpeedPercent(fast_forward_speed), SpeedPercent(fast_forward_speed)) elif distance <= slow_distance: tank_drive.on(SpeedPercent(slow_forward_speed), SpeedPercent(slow_forward_speed)) in Python
@SachinVarshney5 жыл бұрын
Hi, can you please share its structure diagram ?
@AramPerez5 жыл бұрын
I’m not sure what you mean by “its structure diagram”.
@juanrayos44365 жыл бұрын
Can I get the coding module please much appreciateed
@AramPerez5 жыл бұрын
Check the description, the link to the software is there.
@pasquentmax5 жыл бұрын
Nice ! Let me share the mine: Here a lego solving maze robot. We can follow it's way on a screen in live. kzbin.info/www/bejne/aninh5qEbbSemtE
@tenerablack79305 жыл бұрын
My freind...can u share this program...verycool
@AramPerez4 жыл бұрын
Link to the code is in the description.
@arwaaomran90935 жыл бұрын
Confused robot 😂
@egymakers71835 жыл бұрын
code not opening could you please provide it as arduino code
@AramPerez5 жыл бұрын
EGY Makers, sorry, I don’t have the Arduino code. From looking at the mBlock code you should be able to write the Arduino code.
@egymakers71835 жыл бұрын
@@AramPerez mblock code not open please share it again
@ratrod675 жыл бұрын
I have so many questions on its programming and how as the sonic Sensor is working with the servo turning
@ratrod675 жыл бұрын
So awesome! Will you be posting more videos?
@michamatras9685 жыл бұрын
Hi there, What is the name of the clips/holders that the walls are joint together? Where can I buy ones? or just the name of them, please.
@AramPerez5 жыл бұрын
Hi Michal, the clips are 3D printed. I’ll try to find the models and post a link here. I’m really busy this coming week but will look for the models the week after.
@michamatras9685 жыл бұрын
@@AramPerez thank you. I will be waiting for that.
@CaryTeenJustin5 жыл бұрын
@@AramPerez Hello. I was also interested in your modular wall system. Could you also send me the models? Thank you!
@adityaanand94505 жыл бұрын
Do you have the EV3 code and also you have a cool robot
@AramPerez4 жыл бұрын
Link to the code is in the description.
@AramPerez6 жыл бұрын
Sorry but I don’t remember how I built the robot.
@ДаулетханБегалиев-й9е5 жыл бұрын
Hi!!! Do you help me?
@shauryasingh45636 жыл бұрын
can i get the building instructions pls i have to go for a competition and i like your robot.
@OwlWatch26 жыл бұрын
facebook.com/groups/mbcode/
@pericoloco50966 жыл бұрын
Con mi mbot hice lo mismo pero el mbotewn ves de que gire el sensor de ultrasonido gira el mbot.
@AramPerez6 жыл бұрын
el pato loco, si, esa es otra manera de resolver el “maze”.
@mohamadasaadkhayata65076 жыл бұрын
Thanks cool Please can I know how it have been programed
@suhasinimekala28076 жыл бұрын
Please if u get program of it plz send me
@AramPerez4 жыл бұрын
Link to the code is in the description.
@jammbk6 жыл бұрын
You can hear it?!
@sarahsalmon55206 жыл бұрын
How did you build the maze? Would you be willing to sell the maze as a kit ?
@uniquestorynation Жыл бұрын
ill sell it to u
@Cesar-dt9nl6 жыл бұрын
Could you share please the parts you used? i can imagine you used a h bridge, ultrasonic, but could you share some images or diagram please? im interested in this project, thanks
@AramPerez6 жыл бұрын
Thanks for the compliment. I wrote the code as a consultant using EV3Basic. I’ll see if I can find it.
@gurlalsingh72906 жыл бұрын
BROTHER CAN YOU PLEASE PROVIDE US WITH THE CODE!! THANK YOU!
@shockwave1356 жыл бұрын
please\
@AramPerez4 жыл бұрын
@@gurlalsingh7290 Link to the code is in the description.
@AramPerez4 жыл бұрын
@@shockwave135 Link to the code is in the description.
@ranaomran49124 жыл бұрын
do you have the code in the LEGO MINDSTORMS Education EV3
@DocP4ra6 жыл бұрын
This is the best maze solver I've seen.. can you please share the code? Email dr.zapp (at) gmail.com. Thanks
@AramPerez6 жыл бұрын
Hi Dave, I've uploaded the code to github.com/aramperez/EV3-Maze-Solver.git. Just a reminder, you will need EV3Basic.
@dirtfriend6 жыл бұрын
incredibly cute roboy, very safe & looking both ways 10/10
@AramPerez7 жыл бұрын
Sorry for the delay in responding, I'll try to answer the outstanding questions: To Grenvil: No, it does not record it's path, that would be a good enhancement. I did add new code to detect some black tape on the table that denotes the end of the maze. To dplakosh1: The material is some type of board, around 1/4 inch thick. Originally there was a 3 or 4 inch square box with magnets to which the walls would stick to. I wanted a simpler solution so I designed the corner pieces and 3D printed them. Since I no longer work at TechTown, I can't provide the designs. It would be simpler to use foam board or something similar.
@Haklatza2 жыл бұрын
Can you show us how you build that on mblock ?
@AramPerez2 жыл бұрын
@@Haklatza, the link to the code is in the description.