Это видео недоступно.
Сожалеем об этом.

How to Make One Button Have the Functionality of Two or More with Arduino

Поделиться
HTML-код
  • Опубликовано: 17 авг 2024
  • 🤩 FREE Arduino Crash Course 👇👇
    bit.ly/get_Ard...
    **If you like this, I think you'll like the premium Arduino training we offer. Check it out here**
    bit.ly/3nSBPUs
    We designed this circuit board for beginners!
    Kit-On-A-Shield: amzn.to/3lfWClU
    SHOP OUR FAVORITE STUFF! (affiliate links)
    ---------------------------------------------------
    Get your Free Trial of Altium PCB design Software
    www.altium.com...
    We use Rev Captions for our subtitles
    bit.ly/39trLeB
    Arduino UNO R3:
    Amazon: amzn.to/37eP4ra
    Newegg: bit.ly/3fahas8
    Budget Arduino Kits:
    Amazon:amzn.to/3C0VqsH
    Newegg:bit.ly/3j4tISX
    Multimeter Options:
    Amazon: amzn.to/3rRo3E0
    Newegg: bit.ly/3rJoekA
    Helping Hands:
    Amazon: amzn.to/3C8IYXZ
    Newegg: bit.ly/3fb03X1
    Soldering Stations:
    Amazon: amzn.to/2VawmP4
    Newegg: bit.ly/3BZ6oio
    AFFILIATES & REFERRALS
    ---------------------------------------------------
    ►Audible Plus Free trial: amzn.to/3j5IGrV
    ►Join Honey- Save Money bit.ly/3xmj7rH
    ►Download Glasswire for Free:bit.ly/3iv1fql
    FOLLOW US ELSEWHERE
    ---------------------------------------------------
    Facebook: / programmingelectronics...
    Twitter: / progelecacademy
    Website: www.programmin...
    Follow This Link to More Resources:
    programmingele...
    Further Reading:
    Do you have an application where you want multiple buttons for different user inputs? Maybe you have a timer and you want one button for minutes and another for hours.
    But there is a problem - you only have room for one button!
    In this tutorial, we are going to use Arduino to explore how to make one button have the functionality of two or more.

Комментарии • 108

  • @programmingelectronics
    @programmingelectronics  3 года назад +2

    ****If you like this, I think you'll like the premium Arduino training we offer. You can check it out here**** bit.ly/3lHyzcB

  • @Jensettiman
    @Jensettiman 6 лет назад +2

    This helped me out a lot with my menu scrolling script, so I no longer get the skipping due to longer key presses. Any press between 10 and 3000ms now count as one step in the navigation.
    Thank you very much, this is a great video!

    • @maxim25o2
      @maxim25o2 6 лет назад

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @thunderbolt8582
    @thunderbolt8582 6 лет назад +1

    Your videos are some of the best on RUclips. The way you present the information, the detail you go through to explain every part of the code is just EXCELLENT. I hope to learn from your style when I make videos. Won't ever be as good as yours, but I can hope!!! Nice work!!!

  • @michaeleva5598
    @michaeleva5598 8 лет назад

    I am using this code to change numbers on a seven segment display and it didn't seem to be working too well until I changed the while statement from "while (digitalRead(buttonPin) == LOW)" to "while (digitalRead(buttonPin) == HIGH)". After that it worked perfectly. Thank you so much for your help!

  • @tb303wpf1
    @tb303wpf1 11 месяцев назад +1

    Thank you so much for this amazing information! I just successfully finished my first complex control structured algorithm and project. Thanks to your videos. I've been watching your videos every day for about a month now. And I can now program a device to use several buttons that does many different functions based on many inputs. My next goal is to add an LCD screen to the project. And with your videos, I'm sure I will accomplish that goal in no time. Thank you so much. 🙏

  • @ipyanamwaisekwa8209
    @ipyanamwaisekwa8209 Год назад +1

    This video may seem to be old 8 years back but helpful until tomorrow. Thanks for the video.

  • @crouchingchicken007
    @crouchingchicken007 3 года назад +1

    really appreciate this, I managed to apply this logic to my application using a sensor switch by just changing the while loop signal to HIGH. Really appreciate this. Thanks so much :)

  • @Mike-zl4zs
    @Mike-zl4zs 8 лет назад +17

    I was wondering why mine wouldn't work, but then I remembered the Pomegranate. I went out and bought one, put it on the desk next to me and my Arduino and it still didn't work? Turns out the pomegranate wasn't ripe so I had to go out and get another one. I got a ripe one, put it on the desk next to me and surely it worked! Somewhat annoying that the pomegranate must be ripe but otherwise great tutorial!

    • @programmingelectronics
      @programmingelectronics  8 лет назад +4

      It's those details that are always tripping me up...thanks for pointing that out!

    • @maxim25o2
      @maxim25o2 6 лет назад +2

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @caioqwerty1
    @caioqwerty1 8 лет назад +1

    That's what I was looking for my project. I just had to remove the delay so I could use it! Awesome.

  • @davidestrada4942
    @davidestrada4942 2 года назад +1

    Exactly what I need right now

  • @chbonnici
    @chbonnici 6 лет назад +1

    Good video and good explanation. It will be great to add a delay time to set the led on for certain time. Than it can be used for garage door opening

  • @spocksvulcanbrain
    @spocksvulcanbrain 4 года назад +4

    This is soooooo helpful. Thank you. I was going to add two buttons to my project, but now I'm smarter and only need one!
    By the way, what program are you using to design your breadboard diagrams. I'm taking actual pictures to remind me and figure things out. It's a messy process and would love to use a program to do that for me. Thanks.

    • @MahBor
      @MahBor 3 года назад

      He's using a software called fritzing.

  • @NMrick505
    @NMrick505 9 лет назад +1

    I was able to extend the count for the button presses and add a short one to reset/turn off the LED's. I also removed the Serial command so I could push to one of my attiny85's I seem to like. I'm thinking of creating a circuit to include to relays instead of the LED's so I can use one button on a motorcycle handlebar to control two external light circuits (driving and fog lights perhaps). Medium press to turn on one circuit, longer press for second. Somewhat quick press turns off both. Thanks again.

  • @runboyjk
    @runboyjk 6 лет назад

    Do not use delay (if you use more buttons it will not work right?) i use: in the loop unsigned long currentMillis=millis(); if((unsigned long)(currentMillis - btn1previousMillis) >= btn1interval){//handle led and pressed boolean (overflow safe) }

  • @SlNlST3R
    @SlNlST3R 8 лет назад +1

    Thank you! The level of detail and explanation in your vid is phenomenal.

  • @tarikazizi8597
    @tarikazizi8597 2 года назад +1

    Profesional explanation....mill gracias....me estás ayudando mucho.

  • @gerrekurquidez3044
    @gerrekurquidez3044 4 года назад +1

    I have 2 questions;
    1. How do you write a program to create a double click function on the button to have the motor turn a certain amount of degrees, hold it as long as you hold down the button, than rewind back the exact way when you release it?
    2. Could and how do you program/solder that circuit into smaller arduino models?

  • @mattroh7248
    @mattroh7248 8 лет назад +9

    I looked at the thumbnail and went "man, I can burn an arduino with 1 button?"

  • @MrDogloverguy
    @MrDogloverguy 5 лет назад +1

    Wait so what was the pomegranate for?

  • @anokhautomation4453
    @anokhautomation4453 3 года назад +1

    Very informative and interesting. I loved it very much 👍.

  • @SchwanaCARDHUT
    @SchwanaCARDHUT 6 лет назад

    Thank you very much for this tutorial it was very clear and so it was very useful for me and the functionality of button . Note : I get the tutorial by EMail
    Merci beaucoup pour ce tutoriel c'était très clair et donc c'était très utile pour moi et la fonctionnalité du bouton.

  • @lexclock
    @lexclock 7 лет назад

    you can also mutiply antrance with logic gates, there are some devices ready for it. I think sn74hc595n. multiply 3 to 8

  • @phoperdox_sore
    @phoperdox_sore 6 лет назад +1

    You're a lifesaver great video as always

  • @learnenglishwithmovie8485
    @learnenglishwithmovie8485 3 года назад +1

    perfect video . thank u

  • @keldsor
    @keldsor 3 года назад

    Nice video - THX !
    I would prefere NOT to use delay() and instead check the 'delay-time' against the current time in millis() - right ?

  • @saskokarabojoski1380
    @saskokarabojoski1380 8 лет назад +1

    hi P.E.A. (Programming Electronics Academy) hope the short is good for you :p
    Thank you for this amazing videos and tutorials!!
    Hope i can see more of them in future

  • @NMrick505
    @NMrick505 9 лет назад +3

    So could the while loop adding +100 also be thought as a form of "debounce" to the switch press?

  • @snaprollinpitts
    @snaprollinpitts 9 лет назад +2

    nice, I think with another time setting you can also turn the lights off.

    • @programmingelectronics
      @programmingelectronics  9 лет назад

      snaprollinpitts Absolutely, that is actually part of the challenge at the end.

  • @legarishere
    @legarishere 2 года назад +1

    Can you do same thing with out arduino?

  • @richardrex8713
    @richardrex8713 8 лет назад

    AWESOME,i little doubt, doesnt the current in the circuit run from positive to negative , so im not sure why the resistor is connected the other way

  • @TheSadButMadLad
    @TheSadButMadLad 9 лет назад +3

    pressLength_milliseconds should be an int, not a float. We aren't measuring or keeping track of fractions of a millisecond.

    • @programmingelectronics
      @programmingelectronics  9 лет назад +1

      Sad But Mad Lad Very true. That was a remnant of me messing around, and actually wanting a long, but instead using float by mistake. Great point.

  • @ananddalal7069
    @ananddalal7069 8 лет назад +2

    Excellent..!!
    But Can we operate two different LED's using single button?? I mean when i'll press the button, 1st LED should glow and it should be turn off after few second... and when i'll press this button for 2nd time, 2nd LED should glow and it should be turn off like 1st . so on... what to do??

    • @programmingelectronics
      @programmingelectronics  8 лет назад +2

      +Anand Dalal Yes, that is very doable. You might use a variable that toggles back and forth each button press, and two separate if statements with conditions that blink the LED accordingly. Hope this helps some.

    • @lfrdo7815
      @lfrdo7815 8 лет назад +1

      +Programming Electronics Academy hi, Could you please give an example?

    • @maxim25o2
      @maxim25o2 6 лет назад

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @ChandanKumar-kr2kj
    @ChandanKumar-kr2kj 2 года назад +1

    Great trick.

  • @mikeware1934
    @mikeware1934 7 лет назад +4

    Great video!!!
    However I need some clarification.
    You have option 1 set at =>100 to activate the red LED.
    You then have option 2 set at =>2000 to activate the green LED.
    So when you press the button the first time for 2500ms, why does the red AND green LED not turn on. because the statement => 100 should turn on the red LED, since 2500ms is > 100.
    where is the part of your code that specifies the top limit for an option.
    SO if I have 3 options, can I specify something that states
    option1 =>100 but no higher than 1999ms
    option2 =>2000 but no higher than 2999ms
    option3 =>3000 but no higher than 3999ms
    and so on and so on..
    the 3 options above, without defining a "no higher" option, if I press the button for 4000ms, then why would it not turn on all 3 options since 4000ms is => all of my options.

    • @programmingelectronics
      @programmingelectronics  7 лет назад +3

      Great question Mike. Since we are using an IF/ELSE statement in this sketch, only one of the if statements gets executed.
      If we had to separate if statement, one after, then the issue you mention would be a problem.
      Hope this helps some.

    • @maxim25o2
      @maxim25o2 6 лет назад

      Ja zrobiłem o wiele prostrzy sposób, w moim kodzie też możesz dodać jak długo przycisnołeś guzik i wybrać opcje względem czasu kliknięcia.
      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @dvgelectrician1605
    @dvgelectrician1605 3 года назад +1

    great thanks.

  • @watch54
    @watch54 2 года назад +1

    can you make morse code with only one button?

  • @dumitrubunescu5592
    @dumitrubunescu5592 5 месяцев назад

    yes but doesnt while slows your program down ?

  • @normanperez3708
    @normanperez3708 5 лет назад

    I wonder if this code won't block my other code to fill my water reservoir and my other code to control lights.

  • @evahle
    @evahle 9 лет назад +1

    Excellent, thanks!

  • @DJTheCheeto15
    @DJTheCheeto15 9 лет назад

    Im wanting to use a toggle switch to activate a servo. I want to do this to make a door lock but I cant seem to find a tutorial for this. Is it the same like this or is it a whole different code?

  • @timberhoff
    @timberhoff Год назад +1

    im a n00b so its a stupid question probably but one thing i dont understand is why is press_Length_milliSeconds a float? when its not a float

    • @programmingelectronics
      @programmingelectronics  Год назад +1

      Not stupid at all! In fact, you are correct in being suspicious as to why that is a float. It should really be a "long" data type, and I think that must have been an overlooked error - my apologies on that! The reason we want it a long is because milliseconds is a value that can grow very rapidly, and we want space to store a very large number.

    • @timberhoff
      @timberhoff Год назад

      Thank you for an answer. I really thought that there’s some special reason I’m not aware of lol

  • @republicoftutorials6068
    @republicoftutorials6068 7 лет назад +1

    Great video!!!

  • @pfow2006
    @pfow2006 5 лет назад

    @Programming Electronics Academy, so I painstakingly copied then modified the "opensource" code from your video, then tried to modify an off sequence by writing an option 3 big suprise got compile errors, I'll try to work that out with hours of other utube videos, but I cant seem to find out when putting pin 2 in a pull up state, does it remain in that state even after uploading a new sketch that doesnt use pin 2? or after uploading one that doesn't use pin 2? can a noob just use an external resistor? (i think I might be able to answer that my self after watching one more time) and does float refer to a pin being in neither a pull up or pull down state? any how thanks for the vid.

  • @TheFervias
    @TheFervias 3 года назад

    Hi... How can i do if two buttons needed?

  • @sayantanmaiti2513
    @sayantanmaiti2513 7 лет назад

    I have a query, I tried to print the time of pressing using the same logic, but with if statement, but it shows only 100 after every 100milliseconds, can u plz explain?

  • @matteorossi5128
    @matteorossi5128 4 года назад +1

    very interesting

  • @nurdiansyahusman
    @nurdiansyahusman 4 года назад

    how do you turn off the two lights?

  • @paulg.3067
    @paulg.3067 5 лет назад

    nice, clear, well explained, thanks a lot!

  • @bobjr9503
    @bobjr9503 4 года назад

    This is great, but how do I turn off the LEDs one at a time, or all at once when I'm done with them?

    • @jbeard3390
      @jbeard3390 4 года назад

      You could, have them turn off in the if else statement. So option 2 turns off option 1, option 1 turns off 2. Then a press of 4000+ could turn off both

  • @mahaemam4292
    @mahaemam4292 7 лет назад

    hello can you help me to write a code do the following
    we have one switch and four leds
    the first click make 1 led work
    the second click make 2 leds work
    the third click make 3 leds work
    the fourth click make the 4 leds work

  • @user-sb7tu2ve8h
    @user-sb7tu2ve8h 8 лет назад +1

    Really cool :) Thanks :D

  • @Jacob-pf9rc
    @Jacob-pf9rc 7 лет назад +1

    Thnx man

  • @Nqrgaard
    @Nqrgaard 8 лет назад

    What if I want to change the "program" with one button by one push. Not a timed press.
    I want to make one button change between a steady light, a blink example and a random blink example.

    • @maxim25o2
      @maxim25o2 6 лет назад

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

    • @maxim25o2
      @maxim25o2 6 лет назад

      Try use variable like memory. function1 function2 and so one, and push button in seperate function. This way procesor will jump at whole code, and will du also led blinking. Remember to not use delay for blinking, but counting variable, and when will reach 200 then blinking will change.
      You dont need use milis() if You doint care about timing. Simly use " count = count +1 "

  • @mohamedhelalonline
    @mohamedhelalonline 6 лет назад

    Hi, I think this is a really great video and I did everything told here, however, my board was still having some compiling issues and then the board itself executing the code, even if I uploaded the code multiple times. Any Tips?

    • @maxim25o2
      @maxim25o2 6 лет назад

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @debnathmriganka2010
    @debnathmriganka2010 8 лет назад

    Sir Please help me So how to blink and fade a led with one button with this way, when press first time button led will blinking and when press some second same led stop and fade function will start. So I need one button and one led but function are two one is blind and one is fade. Please help me sir.

    • @maxim25o2
      @maxim25o2 6 лет назад

      int pinswich = 2;
      int ledpin = 13;
      int state = LOW;
      int a = LOW;
      void setup(){
      Serial.begin(9600);
      Serial.setTimeout(10);
      pinMode(ledpin, OUTPUT);
      pinMode(pinswich, INPUT_PULLUP);
      digitalWrite(ledpin, LOW);
      }
      void loop(){
      while (digitalRead(pinswich) == HIGH)
      {
      a = HIGH;
      delay(10);
      }
      if ((a == HIGH) && (state == HIGH))
      {
      digitalWrite(ledpin, HIGH);
      Serial.println("on");
      state = LOW;
      a = LOW;
      }
      else if ((a == HIGH) && (state == LOW))
      {
      digitalWrite(ledpin, LOW);
      Serial.println("of");
      state = HIGH;
      a = LOW;
      }
      }

  • @lourensvandermerwe1702
    @lourensvandermerwe1702 6 лет назад

    what programs are you using to digitally create the circutboard

  • @danthemancasey
    @danthemancasey 5 лет назад +2

    Presslengthparagraph = Presslengthparagraph + 100;
    SAME AS
    Presslengthparagraph += 100;

  • @bueksurang41
    @bueksurang41 5 лет назад +1

    Nice...

  • @rafeeqskmkm
    @rafeeqskmkm 7 лет назад

    Hi sir
    How can stop Both LED by same button
    and Add one more button???

    • @pengwin9
      @pengwin9 7 лет назад +2

      This is what I did. I use 'option3' to write both pins to low. I did a lot of messing around...but if you copy/paste and set the Arduino up as shown in the video I'm 99% what I have here will work for you too. This has a quick press turning on pin 12 and turning pin 13 off, a longer press turning on pin 13 and turning 12 off, and a longer-er press turning off both 12 and 13.
      float presslength = 0;
      int option1 = 100;
      int option2 = 1000;
      int option3 = 2000;
      int buttonpin = 2;
      int led1 = 12;
      int led2 = 13;void setup() {
      pinMode(buttonpin, INPUT_PULLUP);
      pinMode(led1, OUTPUT);
      pinMode(led2, OUTPUT);
      Serial.begin(9600);
      }void loop() {
      while(digitalRead(buttonpin) == LOW) {
      delay(50);
      presslength = presslength + 50;
      Serial.print(presslength);
      }
      if(presslength >= option3) {
      digitalWrite(led2, LOW);
      digitalWrite(led1, LOW);
      }
      else if(presslength >= option2) {
      digitalWrite(led2, HIGH);
      digitalWrite(led1, LOW);
      }
      else if(presslength >= option1) {
      digitalWrite(led1, HIGH);
      digitalWrite(led2, LOW);
      }
      presslength = 0;
      }

    • @oqbamohammad4430
      @oqbamohammad4430 5 лет назад +1

      @@pengwin9 with your help I'm driving the three speeds of my home ventilation with one button.
      Thanks man

  • @geronimostade8279
    @geronimostade8279 7 лет назад +1

    Oh boy... Never ever use loops to ask for buttons. Either use interrupts, or the more common way is to poll the button by a timer...

    • @chbonnici
      @chbonnici 6 лет назад

      It will be nice if you make a video to see. Else talk is cheap

    • @pfa2000
      @pfa2000 4 года назад

      Pretty ugly. Delays are evil.

  • @caribbeanchild
    @caribbeanchild 6 лет назад

    here's the problem.... while your program "delays".... no other code can run.... so if you were sampling something every 50ms this will totally screw things up..... delays are to be avoided at all costs

  • @slimnfade
    @slimnfade 3 года назад +1

    Pomp pomp was for laughs prove me wrong in comments

  • @Sznajderification
    @Sznajderification 8 лет назад

    lol, why do you need a pomegranate?

  • @bigg490
    @bigg490 3 года назад

    CANNOT HEAR YOU!!!!!!!!!!!!!!!

    • @Mtmonaghan
      @Mtmonaghan 3 месяца назад

      TURN THE VOLUME UP

  • @justincoleman9776
    @justincoleman9776 4 года назад

    Huh? What?! Speak up! The volume of your voice is sooooo much lower than the intro music or other vids. Seriously though, its so low my phone cant play it loud enough, and I'm in a room with no other noise. Not a problem with pretty much every other video out there.