How to make colour sorting Machine using Arduino

  Рет қаралды 162,585

Mr Innovative

Mr Innovative

Күн бұрын

Пікірлер: 95
@djfago6240
@djfago6240 3 жыл бұрын
This is so cool. I am a fan of your channel. Going back to school this year to learn industrial automation. With love from Belgium 🇧🇪
@NeedToDIY
@NeedToDIY 4 жыл бұрын
The mini printed box for the elettronic!! so cute!
@diegosuarez5473
@diegosuarez5473 5 жыл бұрын
Jajahaha the mini doors are so cool broh, keep going please and congratulations
@Melkano
@Melkano 5 жыл бұрын
Where is the code?
@aryanhighschool7808
@aryanhighschool7808 3 жыл бұрын
yes bro the code is important for this project
@SritamTripathy-gs9yd
@SritamTripathy-gs9yd 5 ай бұрын
​@@aryanhighschool7808bro give the program code
@electronic7979
@electronic7979 5 жыл бұрын
Excellent project 👍 very good. I like it.👍
@Parth_188
@Parth_188 5 жыл бұрын
Awsome machine liked it
@3xAudio
@3xAudio 4 жыл бұрын
I can't wait to use the colour sensor in more of my projects. so many possibilities. I Like how you shot this video i might learn from it for my future videos and projects.
@florencemuloongo7264
@florencemuloongo7264 2 жыл бұрын
I'm working on an egg grading machine and I'm using a similar principal but I'm using a loadcell sensor,I'm having challenges stoping and starting the motor depending on the output
@arduinoprojets4718
@arduinoprojets4718 5 жыл бұрын
The important element in this project is the code, share it with the viewers please
@prakashv5476
@prakashv5476 3 жыл бұрын
Reference for coding and wiring of above project is interestingengineering.com/video/make-your-very-own-arduino-based-color-candy-sorting-machine?fbclid=IwAR218zBq03LwtIUlU2CS-Zt5OJ3SetoEdObYuyuQbqc_JnUthWsW20Cikjk
@arduinoprojets4718
@arduinoprojets4718 2 жыл бұрын
@@prakashv5476 Sorry, there is nothing in the code that indicates Stepper Motors Is Stepper Motors moving like crazy? We need an answer from you, thank you #include #define S0 2 #define S1 3 #define S2 4 #define S3 5 #define sensorOut 6 Servo topServo; Servo bottomServo; int frequency = 0; int color=0; void setup() { pinMode(S0, OUTPUT); pinMode(S1, OUTPUT); pinMode(S2, OUTPUT); pinMode(S3, OUTPUT); pinMode(sensorOut, INPUT); // Setting frequency-scaling to 20% digitalWrite(S0, HIGH); digitalWrite(S1, LOW); topServo.attach(7); bottomServo.attach(8); Serial.begin(9600); } void loop() { topServo.write(115); delay(500); for(int i = 115; i > 65; i--) { topServo.write(i); delay(2); } delay(500); color = readColor(); delay(10); switch (color) { case 1: bottomServo.write(50); break; case 2: bottomServo.write(75); break; case 3: bottomServo.write(100); break; case 4: bottomServo.write(125); break; case 5: bottomServo.write(150); break; case 6: bottomServo.write(175); break; case 0: break; } delay(300); for(int i = 65; i > 29; i--) { topServo.write(i); delay(2); } delay(200); for(int i = 29; i < 115; i++) { topServo.write(i); delay(2); } color=0; } // Custom Function - readColor() int readColor() { // Setting red filtered photodiodes to be read digitalWrite(S2, LOW); digitalWrite(S3, LOW); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int R = frequency; // Printing the value on the serial monitor Serial.print("R= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.print(" "); delay(50); // Setting Green filtered photodiodes to be read digitalWrite(S2, HIGH); digitalWrite(S3, HIGH); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int G = frequency; // Printing the value on the serial monitor Serial.print("G= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.print(" "); delay(50); // Setting Blue filtered photodiodes to be read digitalWrite(S2, LOW); digitalWrite(S3, HIGH); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int B = frequency; // Printing the value on the serial monitor Serial.print("B= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.println(" "); delay(50); if(R32 & G55){ color = 1; // Red } if(G43 & B35){ color = 2; // Orange } if(R40 & G40){ color = 3; // Green } if(R24 & G30){ color = 4; // Yellow } if(R46 & G55){ color = 5; // Brown } if (G45 & B26){ color = 6; // Blue } return color; }
@kushwanthbyragoni
@kushwanthbyragoni Жыл бұрын
@@prakashv5476 that code is having errors
@gwharton68
@gwharton68 4 жыл бұрын
Would be a fun project to build, but without the code for the PCB layout and the code to operate it with it is pretty much a waste.
@certified-forklifter
@certified-forklifter 5 жыл бұрын
great work buddy
@estebanyanson
@estebanyanson Жыл бұрын
Consulta. De qué manera puedo detectar que se enciende el led rojo de otro aparato sin que influya la luz ambiente? Tengo un electrodomestico que cuando termina enciende un led rojo pero no hace zumbido y quiero detectar ese led para hacer el zumbido yo. Gracias
@kevinhoublon8630
@kevinhoublon8630 2 жыл бұрын
Hello, great video 😄. At 7:49, What is the name of the black components you put on the pcb? Thank you in advance. Cordially.
@kevinhoublon8630
@kevinhoublon8630 Жыл бұрын
@Majeed's Gaming Hello, thank you very much 😁. Have a nice week 😄. Cordially.
@robertocameto487
@robertocameto487 Жыл бұрын
In the web page, refering to this project, there is a text code which seems to be wrong, because it refers to two servo motors (high and bottom), but the project includes a stepper mototr
@petiovelev97
@petiovelev97 4 жыл бұрын
Hello, Can I replace the sensor with an arduino camera like OV7670 VGA camera? Should I use the same modules if i use an arduino camera? My idea is: the camera will take a picture of the object, then it will take a histogram of the picture or another process which takes the color of the object and recognize the color of the object. Everything is the same in process but I only want to change the sensor with camera.
@samuelfellows6923
@samuelfellows6923 5 жыл бұрын
err.. has put a fan on the rear of cabinet, but has not drilled additional vent holes? - where is he expecting the air/heat to escape from, the cable hole at the bottom? = if used for a long time, i'd expect the arduino will overheat and then what would he do? ug at it/open the doors to let it cool down, [if installing a fan on a sealed box/chamber = you should make a second vent to allow the air to be displaced (logical/scientific) explanation]
@jair4666
@jair4666 2 жыл бұрын
Puedo utilizar fragmentos del video para un curso? (se va a comercializar el curso) Usaría del minuto 0:14 al 0:47
@panettron
@panettron 2 жыл бұрын
Amazing work!
@mrindian5455
@mrindian5455 5 жыл бұрын
Did u prepare your own arudino
@designartgermanyhamm5394
@designartgermanyhamm5394 3 жыл бұрын
Leider Sketch ist nicht für stepmotor Einleitung mit falschen sketch
@augustinetembo9988
@augustinetembo9988 2 жыл бұрын
Can't seem to find the code for the color sorting machine
@AdarshTheTechi
@AdarshTheTechi 2 ай бұрын
Have you found solution?
@learnwithjd8192
@learnwithjd8192 5 жыл бұрын
Code is where?
@sudarshan0507
@sudarshan0507 2 жыл бұрын
Can we do this with other colour sensors
@arduinoprojets4718
@arduinoprojets4718 2 жыл бұрын
Sorry, there is nothing in the code that indicates Stepper Motors Is Stepper Motors moving like crazy? We need an answer from you, thank you #include #define S0 2 #define S1 3 #define S2 4 #define S3 5 #define sensorOut 6 Servo topServo; Servo bottomServo; int frequency = 0; int color=0; void setup() { pinMode(S0, OUTPUT); pinMode(S1, OUTPUT); pinMode(S2, OUTPUT); pinMode(S3, OUTPUT); pinMode(sensorOut, INPUT); // Setting frequency-scaling to 20% digitalWrite(S0, HIGH); digitalWrite(S1, LOW); topServo.attach(7); bottomServo.attach(8); Serial.begin(9600); } void loop() { topServo.write(115); delay(500); for(int i = 115; i > 65; i--) { topServo.write(i); delay(2); } delay(500); color = readColor(); delay(10); switch (color) { case 1: bottomServo.write(50); break; case 2: bottomServo.write(75); break; case 3: bottomServo.write(100); break; case 4: bottomServo.write(125); break; case 5: bottomServo.write(150); break; case 6: bottomServo.write(175); break; case 0: break; } delay(300); for(int i = 65; i > 29; i--) { topServo.write(i); delay(2); } delay(200); for(int i = 29; i < 115; i++) { topServo.write(i); delay(2); } color=0; } // Custom Function - readColor() int readColor() { // Setting red filtered photodiodes to be read digitalWrite(S2, LOW); digitalWrite(S3, LOW); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int R = frequency; // Printing the value on the serial monitor Serial.print("R= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.print(" "); delay(50); // Setting Green filtered photodiodes to be read digitalWrite(S2, HIGH); digitalWrite(S3, HIGH); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int G = frequency; // Printing the value on the serial monitor Serial.print("G= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.print(" "); delay(50); // Setting Blue filtered photodiodes to be read digitalWrite(S2, LOW); digitalWrite(S3, HIGH); // Reading the output frequency frequency = pulseIn(sensorOut, LOW); int B = frequency; // Printing the value on the serial monitor Serial.print("B= ");//printing name Serial.print(frequency);//printing RED color frequency Serial.println(" "); delay(50); if(R32 & G55){ color = 1; // Red } if(G43 & B35){ color = 2; // Orange } if(R40 & G40){ color = 3; // Green } if(R24 & G30){ color = 4; // Yellow } if(R46 & G55){ color = 5; // Brown } if (G45 & B26){ color = 6; // Blue } return color; }
@Dark_v-sl2ks
@Dark_v-sl2ks 7 ай бұрын
Is this code functional? I want to do the project but the code is not there and I want to know if it works.
@saravanakumar2765
@saravanakumar2765 5 жыл бұрын
Nice job
@RaviShankar-lm3xn
@RaviShankar-lm3xn 2 жыл бұрын
sir problem in rotating bottom servo motor please help
@PASStaCreations
@PASStaCreations 5 жыл бұрын
Bro code for this
@prakashv5476
@prakashv5476 3 жыл бұрын
interestingengineering.com/video/make-your-very-own-arduino-based-color-candy-sorting-machine?fbclid=IwAR218zBq03LwtIUlU2CS-Zt5OJ3SetoEdObYuyuQbqc_JnUthWsW20Cikjk
@mucahitozdemir2476
@mucahitozdemir2476 3 жыл бұрын
If I use Arduino uno instead of Arduino nano, how should the system's connection and codes be? Can you please help me?
@alfinmesakhena3802
@alfinmesakhena3802 Жыл бұрын
Sangat keren 👍👍
@electricalcoder3025
@electricalcoder3025 4 жыл бұрын
Good project
@tomyhardiansyah47
@tomyhardiansyah47 4 жыл бұрын
very good bro
@VijetaShidlihal
@VijetaShidlihal 26 күн бұрын
Bro please send me the full circuit daigram of this sorting bot... 🙏
@tharunv1885
@tharunv1885 5 жыл бұрын
Bro where is the code .........
@ShaikhShaikh-yz2kz
@ShaikhShaikh-yz2kz 7 ай бұрын
Sir kya aap Tambrind Spoon 🥄 filling machine bana sakte ho
@huyang8044
@huyang8044 5 жыл бұрын
can you give me your code of this project ? please
@popocolocoi6082
@popocolocoi6082 5 жыл бұрын
Thank you for this content. I believe with this technology, Political issues will be easily addressed, and all the warm-blooded animals will live happily ever after.
@joysarkar2600
@joysarkar2600 4 жыл бұрын
Please give me code
@catherinejohnson9191
@catherinejohnson9191 10 ай бұрын
Can I get the details of this project
@mohamedayman8550
@mohamedayman8550 5 жыл бұрын
Hi mr can you send me the arduino code of this colour sorting
@deliageabou4025
@deliageabou4025 5 жыл бұрын
Code?
@xBot-sn8cx
@xBot-sn8cx Жыл бұрын
Can I order this
@catatanharianinstruktur5887
@catatanharianinstruktur5887 2 жыл бұрын
could you please share source code file. its very inspire, cool
@AAIschilling
@AAIschilling 3 жыл бұрын
love the beat
@narensky8649
@narensky8649 5 жыл бұрын
I make the cutting machine by seeing your video thanks for that but one problem stepper motor and servo motor is not working pls help..... And share u r email address to talk about the wire cutting machine THANK YOU.......
@nezhaplays
@nezhaplays 4 жыл бұрын
Can i get the source code?
@Karlos_13
@Karlos_13 Жыл бұрын
descansas como si chambearas, donde esta el codigo?
@ronydebnath6250
@ronydebnath6250 4 жыл бұрын
hello i need a video of size sorting machine using arduino can you make it??????????????
@LeonardoGarciaContreras-oe2er
@LeonardoGarciaContreras-oe2er 9 ай бұрын
What is the really code ?
@udaykumard4261
@udaykumard4261 3 жыл бұрын
Code please
@LuizCamposTutoriais
@LuizCamposTutoriais 5 жыл бұрын
Wow
@sunowarshaikh6534
@sunowarshaikh6534 4 жыл бұрын
Sir plz send Ardunio code
@thanghoang0205
@thanghoang0205 4 жыл бұрын
Can i have a code for this, sir?
@electronicabasicacekit
@electronicabasicacekit 5 жыл бұрын
Muy interesante, genial
@iwanbadrussamsi5616
@iwanbadrussamsi5616 5 жыл бұрын
Ada file garber nya ?
@EasyOne
@EasyOne 5 жыл бұрын
good
@gokulff777
@gokulff777 5 ай бұрын
Bro code u have
@Nani-wu5iy
@Nani-wu5iy 5 жыл бұрын
Icon..?
@elve44
@elve44 4 жыл бұрын
Peux t'on avoir le code
@HammadAli-tq7se
@HammadAli-tq7se 7 ай бұрын
i want arduino code of this machine
@elve44
@elve44 Жыл бұрын
beaucoup de vos création il manque les codes pour les débutants c'est dommage
@prasoonpatel5408
@prasoonpatel5408 5 жыл бұрын
Bhai code kaha h iska..?
@zouheirbenaissa-yahia6899
@zouheirbenaissa-yahia6899 5 жыл бұрын
Mr innovation .. I want to make your project #colour sorting machine as a project to graduate from the university ... and I need the code of Arduino ... Help me please
@Hnejad
@Hnejad 4 жыл бұрын
Zouheir Benaissa-Yahia Hi. What you did about the code.
@dheerajswaroopsm691
@dheerajswaroopsm691 3 жыл бұрын
Code bro?
@KevinRamirez-ib9yk
@KevinRamirez-ib9yk 7 ай бұрын
Y el codigo donde está el código 😊
@rakeshmr3303
@rakeshmr3303 3 жыл бұрын
can i get code
@yongkipradana4571
@yongkipradana4571 4 жыл бұрын
i Need code sir?
@vrushr3759
@vrushr3759 4 жыл бұрын
Hello sir can you please upload video on 3d Medelling on fusion 360 of this project
@kishanrathod4477
@kishanrathod4477 4 жыл бұрын
Kya aap ishe banake mujhe sell kar denge ?
@اسامهزياد-ي2ر
@اسامهزياد-ي2ر 4 жыл бұрын
Need code bro
@atulgupta4098
@atulgupta4098 5 жыл бұрын
bhai koi aise remote control car bano jiske agee koi bhi object aia to vo ruk jai acceliration dene par bhi
@saadslimati7469
@saadslimati7469 2 жыл бұрын
please ineed a code
@zakichahboun4836
@zakichahboun4836 3 жыл бұрын
hello brother can you sebd me code arduino please?
@Kingpunya
@Kingpunya Ай бұрын
Plywood
@gunterpietzsch3995
@gunterpietzsch3995 4 жыл бұрын
As this guy seems not to be willing to share his knowledge, this might help: kzbin.info/www/bejne/eYG4iaurrslsrtk The color sensing stuff is the most important part of the code. All other elements like stepper and servo control are pretty well explained in several othe videos. Hope this helps
@luisdiegocarranza2234
@luisdiegocarranza2234 2 жыл бұрын
I have source!!
@johndass-jc5fn
@johndass-jc5fn Жыл бұрын
b ro i need counting]
@dimauz1971
@dimauz1971 5 жыл бұрын
Very bad channel! Does not communicate with visitors at all!
@beneitez6443
@beneitez6443 3 жыл бұрын
gg play loby
@Hnejad
@Hnejad 4 жыл бұрын
Where is the code?
@MyMomHadMe
@MyMomHadMe 7 ай бұрын
8:50 tehe
@silabmatthewg.936
@silabmatthewg.936 5 жыл бұрын
code?
@slin3x33
@slin3x33 8 ай бұрын
where's the code?
@syazanihusin2720
@syazanihusin2720 Жыл бұрын
Code?
@tonyp4894
@tonyp4894 3 ай бұрын
The code is in the FIRST comment.
DIY Cardboard Skittle Sorting Machine - Arduino
20:31
DIY Machines
Рет қаралды 51 М.
Top 10 Arduino projects
21:41
Mr Innovative
Рет қаралды 1,2 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Clasificando Objetos por Color con Sensor RGB TCS34725 y Arduino
17:55
TOP 20 Ideas de Proyectos con ARDUINO para Mecatrónica 2022
10:06
Cesar Stark
Рет қаралды 513 М.
7 simple Arduino projects which YOU can build in 15 minutes.
31:07
Major Tom Workshop
Рет қаралды 1 МЛН
Making this unique color sorting machine || How to - Arduino - 3D printed
10:20
Como hacer una Cinta Transportadora (Planos PDF)
21:10
Construye Fácil
Рет қаралды 62 М.
DIY Arduino based 3D scanning machine | IR 3D scanner
7:19
Mr Innovative
Рет қаралды 549 М.
Arduino Color Sorter Project
5:26
How To Mechatronics
Рет қаралды 513 М.
Pixel 7 и 7 Pro с Face ID - лучше iPhone 14 Pro!
21:12
Rozetked
Рет қаралды 457 М.
Абзал неге келді? 4.10.22
3:53
QosLike fan club
Рет қаралды 31 М.
Лайфхак: Легально делать деньги
0:43