Green BasketBot
0:31
6 жыл бұрын
Red BasketBot
0:30
6 жыл бұрын
Maze Solving Lego EV3 Robot
2:16
7 жыл бұрын
Maze Solving mBot Robot
1:50
8 жыл бұрын
Line Following mBot
0:52
8 жыл бұрын
Halloween Scene Controller
0:31
9 жыл бұрын
Пікірлер
@Abokr-Abdulah
@Abokr-Abdulah 6 ай бұрын
Thank code please
@AramPerez
@AramPerez 5 ай бұрын
Please look at the description.
@БактиярРахметов-т7е
@БактиярРахметов-т7е 7 ай бұрын
can you make a video of how you assemble the robot, please?
@AramPerez
@AramPerez 7 ай бұрын
I’m sorry but I no longer have the instructions on how to build it.
@SlowedandReverdSounds1
@SlowedandReverdSounds1 7 ай бұрын
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
@AramPerez
@AramPerez 7 ай бұрын
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.
@shawnbowser4260
@shawnbowser4260 8 ай бұрын
Where did you get the wall pieces to make the maze?
@AramPerez
@AramPerez 8 ай бұрын
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.
@01aragog78
@01aragog78 10 ай бұрын
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
@AramPerez
@AramPerez 9 ай бұрын
You cannot adjust the sensitivity of the sensor. You can move slower if you want.
@pepsisemi2761
@pepsisemi2761 10 ай бұрын
Du bist ein ayri
@hectormachado1395
@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
@AramPerez Жыл бұрын
Sorry no.
@carolynmbelwa7692
@carolynmbelwa7692 Жыл бұрын
How do u do this in spike😅🥲😭
@AramPerez
@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
@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
@AramPerez Жыл бұрын
See the description, links to the code are there.
@VuTran-fc2rg
@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
@VuTran-fc2rg Жыл бұрын
And can you tell me the code e
@AramPerez
@AramPerez Жыл бұрын
@@VuTran-fc2rg I’m very sorry but I don’t have access to a EV3 robot anymore.
@aditadas36
@aditadas36 Жыл бұрын
How did you build it?
@AramPerez
@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
@CountryBallUKEdits596 Жыл бұрын
imagine hearing the looking sound at night...
@winthropdc1
@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
@TheGolden_A1 Жыл бұрын
I can't run the .SB file is there a .EV3 file for it?
@AramPerez
@AramPerez Жыл бұрын
As stated in the description, the program requires SmallBasic and EV3Basic. I've added the links to both programs on GitHub.
@gabrielaguadalupemurciachi362
@gabrielaguadalupemurciachi362 Жыл бұрын
Que programación uso
@AramPerez
@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.
@lindoneimontenegro8276
@lindoneimontenegro8276 2 жыл бұрын
do you have the code in python? thanks
@AramPerez
@AramPerez 2 жыл бұрын
Sorry I don’t have access to an EV3 robot any more. I haven’t checked if the EV3 supports Python.
@bobzelensky5414
@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.3268
@wolfgangr.3268 2 жыл бұрын
Well done!
@AramPerez
@AramPerez 2 жыл бұрын
Thanks!
@wolfgangr.3268
@wolfgangr.3268 2 жыл бұрын
Can you do it with the previous model?
@AramPerez
@AramPerez 2 жыл бұрын
Which previous model? You should be able to adapt the software to any other model.
@wolfgangr.3268
@wolfgangr.3268 2 жыл бұрын
@@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?
@AramPerez
@AramPerez 2 жыл бұрын
@@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.
@monicakenfack3815
@monicakenfack3815 2 жыл бұрын
THIS IS WAY TOO DOPE!! Do you have the code in the latest lego software? that will be the mindstorm home 1.5
@AramPerez
@AramPerez 2 жыл бұрын
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.
@coolbrorett
@coolbrorett 2 жыл бұрын
really cool. What is you build a mindstorms robot that scans the maze and makes it first try?
@AramPerez
@AramPerez 2 жыл бұрын
It would be possible but I no longer have access to any EV3 robots. ☹️
@coolbrorett
@coolbrorett 2 жыл бұрын
@@AramPerez rip
@niniliumify
@niniliumify 2 жыл бұрын
Wait for It!...
@ahmedgamberli2250
@ahmedgamberli2250 2 жыл бұрын
It's too simple to build this robot, but the thing you did is amazing!
@AramPerez
@AramPerez 2 жыл бұрын
Thanks!
@karenbell4859
@karenbell4859 3 жыл бұрын
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.
@AramPerez
@AramPerez 3 жыл бұрын
It’s just plain black electrical tape. I haven’t had any problems with it being too shiny.
@Raviteja_Vlogs
@Raviteja_Vlogs 3 жыл бұрын
Plz provide code?
@AramPerez
@AramPerez 3 жыл бұрын
See the description for a link to the code.
@netherlandsball861
@netherlandsball861 3 жыл бұрын
The last part is amazing
@AramPerez
@AramPerez 3 жыл бұрын
Thanks, glad you liked it!
@Capucco
@Capucco 4 жыл бұрын
Hello is it possible to get the program of it ?
@AramPerez
@AramPerez 4 жыл бұрын
Look in the description.
@deangat1312
@deangat1312 4 жыл бұрын
hello, can I have the instructions of how to build this robot, I mean, which part needs to connect to which part and how?
@AramPerez
@AramPerez 4 жыл бұрын
Sorry, as I stated in other replies, I don’t have the instructions.
@tonyletizia2873
@tonyletizia2873 4 жыл бұрын
Awesome dude
@AramPerez
@AramPerez 4 жыл бұрын
tony, thanks!
@connorg9960
@connorg9960 5 жыл бұрын
Please share the program
@AramPerez
@AramPerez 4 жыл бұрын
Please see the description.
@bobzelensky5414
@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
@SachinVarshney
@SachinVarshney 5 жыл бұрын
Hi, can you please share its structure diagram ?
@AramPerez
@AramPerez 5 жыл бұрын
I’m not sure what you mean by “its structure diagram”.
@juanrayos4436
@juanrayos4436 5 жыл бұрын
Can I get the coding module please much appreciateed
@AramPerez
@AramPerez 5 жыл бұрын
Check the description, the link to the software is there.
@pasquentmax
@pasquentmax 5 жыл бұрын
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
@tenerablack7930
@tenerablack7930 5 жыл бұрын
My freind...can u share this program...verycool
@AramPerez
@AramPerez 4 жыл бұрын
Link to the code is in the description.
@arwaaomran9093
@arwaaomran9093 5 жыл бұрын
Confused robot 😂
@egymakers7183
@egymakers7183 5 жыл бұрын
code not opening could you please provide it as arduino code
@AramPerez
@AramPerez 5 жыл бұрын
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.
@egymakers7183
@egymakers7183 5 жыл бұрын
@@AramPerez mblock code not open please share it again
@ratrod67
@ratrod67 5 жыл бұрын
I have so many questions on its programming and how as the sonic Sensor is working with the servo turning
@ratrod67
@ratrod67 5 жыл бұрын
So awesome! Will you be posting more videos?
@michamatras968
@michamatras968 5 жыл бұрын
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.
@AramPerez
@AramPerez 5 жыл бұрын
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.
@michamatras968
@michamatras968 5 жыл бұрын
@@AramPerez thank you. I will be waiting for that.
@CaryTeenJustin
@CaryTeenJustin 5 жыл бұрын
@@AramPerez Hello. I was also interested in your modular wall system. Could you also send me the models? Thank you!
@adityaanand9450
@adityaanand9450 5 жыл бұрын
Do you have the EV3 code and also you have a cool robot
@AramPerez
@AramPerez 4 жыл бұрын
Link to the code is in the description.
@AramPerez
@AramPerez 6 жыл бұрын
Sorry but I don’t remember how I built the robot.
@ДаулетханБегалиев-й9е
@ДаулетханБегалиев-й9е 5 жыл бұрын
Hi!!! Do you help me?
@shauryasingh4563
@shauryasingh4563 6 жыл бұрын
can i get the building instructions pls i have to go for a competition and i like your robot.
@OwlWatch2
@OwlWatch2 6 жыл бұрын
facebook.com/groups/mbcode/
@pericoloco5096
@pericoloco5096 6 жыл бұрын
Con mi mbot hice lo mismo pero el mbotewn ves de que gire el sensor de ultrasonido gira el mbot.
@AramPerez
@AramPerez 6 жыл бұрын
el pato loco, si, esa es otra manera de resolver el “maze”.
@mohamadasaadkhayata6507
@mohamadasaadkhayata6507 6 жыл бұрын
Thanks cool Please can I know how it have been programed
@suhasinimekala2807
@suhasinimekala2807 6 жыл бұрын
Please if u get program of it plz send me
@AramPerez
@AramPerez 4 жыл бұрын
Link to the code is in the description.
@jammbk
@jammbk 6 жыл бұрын
You can hear it?!
@sarahsalmon5520
@sarahsalmon5520 6 жыл бұрын
How did you build the maze? Would you be willing to sell the maze as a kit ?
@uniquestorynation
@uniquestorynation Жыл бұрын
ill sell it to u
@Cesar-dt9nl
@Cesar-dt9nl 6 жыл бұрын
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
@AramPerez
@AramPerez 6 жыл бұрын
Thanks for the compliment. I wrote the code as a consultant using EV3Basic. I’ll see if I can find it.
@gurlalsingh7290
@gurlalsingh7290 6 жыл бұрын
BROTHER CAN YOU PLEASE PROVIDE US WITH THE CODE!! THANK YOU!
@shockwave135
@shockwave135 6 жыл бұрын
please\
@AramPerez
@AramPerez 4 жыл бұрын
@@gurlalsingh7290 Link to the code is in the description.
@AramPerez
@AramPerez 4 жыл бұрын
@@shockwave135 Link to the code is in the description.
@ranaomran4912
@ranaomran4912 4 жыл бұрын
do you have the code in the LEGO MINDSTORMS Education EV3
@DocP4ra
@DocP4ra 6 жыл бұрын
This is the best maze solver I've seen.. can you please share the code? Email dr.zapp (at) gmail.com. Thanks
@AramPerez
@AramPerez 6 жыл бұрын
Hi Dave, I've uploaded the code to github.com/aramperez/EV3-Maze-Solver.git. Just a reminder, you will need EV3Basic.
@dirtfriend
@dirtfriend 6 жыл бұрын
incredibly cute roboy, very safe & looking both ways 10/10
@AramPerez
@AramPerez 7 жыл бұрын
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.
@Haklatza
@Haklatza 2 жыл бұрын
Can you show us how you build that on mblock ?
@AramPerez
@AramPerez 2 жыл бұрын
@@Haklatza, the link to the code is in the description.