DIY Amazing Automatic Cat Toy

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • #NoLi #DIYcattoy
    Instagram : / noli_cat_channel
    This time I will make an amazing automatic cat toy.
    Will my cats like this?
    Music - Attribution
    TipToes - Myuu
    Lock and Key - Silent Partner
    Russian Dance - Joey Pecoraro

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

  • @streakyguys_5991
    @streakyguys_5991 2 года назад +10

    This would be extra amazing if cat's didn't like their owner playing with them more, but still, this is incredible

    • @afthang732
      @afthang732 4 месяца назад

      believe me, as a full time worker, as much as I love my cat, it is kinda exhaust to play with him, but nonetheless I still want him to be amused,happy, and therefore this is awsome

  • @AzlianaLyana
    @AzlianaLyana 2 года назад +4

    Self play!👆 Simple!👍 I LOVE IT😁💖

  • @omni7381
    @omni7381 2 года назад +6

    Your cats are so treated!!! They deserve it tho

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

      Yes

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

      Agreed

  • @jamilahdin2177
    @jamilahdin2177 2 года назад +2

    Wow amazing you cat like nice and cute🥰

  • @shadesofidaho
    @shadesofidaho 2 года назад +4

    OH How fun. My 18 pound guy would destroy it but he would love doing so.

  • @bdavidgreenwell8298
    @bdavidgreenwell8298 2 года назад +2

    I love it! The cats did the same thing mine does, go for the string!

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

    Awesome ❤️❤️❤️👍👍👍♥️♥️♥️🥰🥰🥰😊😊😊

  • @メインカール
    @メインカール 2 года назад +2

    I want such a toy 💕👍

  • @David-ty6my
    @David-ty6my Год назад

    The second cat is too smart XD

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

    Awww I love it your channel is so interesting

  • @estelitapolverari5376
    @estelitapolverari5376 2 года назад +2

    😂😂😂🤣😂🤣😂🤣🤣🤣🤣 adorei!! 👏🏻👏🏻👏🏻👏🏻

  • @dmw5332
    @dmw5332 2 года назад

    Lizzy keeps trying to take the toy elsewhere -- her moves are great! Noah just bites the toy off!

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

    Noah's like huhhh?

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

    Lizzy's a little too tough for it lol

  • @A_Pt_9298
    @A_Pt_9298 2 года назад

    It fills me with confidence when these complicated ideas videos come up on RUclips and then the so called 'genius' use a craft knife as a screwdriver 🥺

  • @monstercolorfunco4391
    @monstercolorfunco4391 10 месяцев назад

    That';s cool i'd use a semi random movement gnerator based on cogs or wire and spring chaos.

  • @dayannagrageda1829
    @dayannagrageda1829 6 месяцев назад

    😮 this is by far the best mechanical cat toy I've seen 😂 where can I get this motor from?? What's it called? I want to try make my own 🤭

    • @mudspringer
      @mudspringer 4 месяца назад

      This guy doesn't answer his comments :(. I just made one. You want a 180 servo motor. I got mine from Digi-key. I can't find the link to the actual one I bought but I think mine might be a little wimpy anyway. Whatever - they are cheap enough so I'll just replace it if need be. Good luck.

  • @Shiro-Nai
    @Shiro-Nai 2 года назад +1

    Lovely owo

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

    Nice project. What did you write after RandomSeed? Can you share the codes?

    • @mudspringer
      @mudspringer 4 месяца назад +1

      This guy doesn't seem to answer...I was going to ask where he got the plastic strut...anyway - a bit late - but I made one. Here's my code: #include
      Servo servo;
      long pos = 0;
      long delayMs = 0;
      void setup() {
      randomSeed(analogRead(0));
      servo.attach(9);
      Serial.begin(115200);
      const char *helloWorld = {"Hello world."};
      Serial.println(helloWorld);
      }
      void loop() {
      static int elapsedSeconds = 0;
      // random position - 0 to 180
      pos = random(180);
      // random delay - 500 to 1500 miliseconds
      delayMs = random(500, 1500);
      // set the angle and wait
      servo.write(pos);
      delay(delayMs);
      }

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

    I miss Nara.

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

    WOW i need to do this i cant play with my cats al the time so this i ginies

  • @funfactznstuff5183
    @funfactznstuff5183 2 года назад

    Super 👌.Well..Nara is missing 😔
    And I am very very Sad 😭

  • @FAKM
    @FAKM 2 года назад +8

    Still recovering from Nara's death 😭

    • @whatevergoesforme5129
      @whatevergoesforme5129 2 года назад

      Me too. I asked this youtuber to please have more Nara video when he was alive even if it was not about DIY stuff, just videos of him sleeping or doing something else because I said time was ticking for the senior cat. But I guess, he wants his content to be more about DIY stuff instead of more stories about his cats.

  • @TheKittyCatsCatLovers
    @TheKittyCatsCatLovers 2 года назад

    It helps me on my videos 📹

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

    Hi! I was wondering if I could get the code for this. I am trying to create one for my own cat. Thank you!

    • @mudspringer
      @mudspringer 4 месяца назад

      The dude doesn't answer his own channel - but here's the code for mine. Hope it helps.
      #include
      Servo servo;
      long pos = 0;
      long delayMs = 0;
      void setup() {
      randomSeed(analogRead(0));
      servo.attach(9);
      Serial.begin(115200);
      const char *helloWorld = {"Hello world."};
      Serial.println(helloWorld);
      }
      void loop() {
      static int elapsedSeconds = 0;
      // random position - 0 to 180
      pos = random(180);
      // random delay - 500 to 1500 miliseconds
      delayMs = random(500, 1500);
      // set the angle and wait
      servo.write(pos);
      delay(delayMs);
      }

  • @sharadkumar8365
    @sharadkumar8365 4 месяца назад

    how to make it? thought it was a DIY video to show off the toy and how to make it. ah!

  • @MartinsNeves-ct4oe
    @MartinsNeves-ct4oe 2 года назад +1

    Oi

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

    Please share the code...

    • @mudspringer
      @mudspringer 4 месяца назад

      Ha - you are the third person who asked for this. Too bad the guy who owns the channel doesn't respond :( but I made one of these - here's my code.
      #include
      Servo servo;
      long pos = 0;
      long delayMs = 0;
      void setup() {
      randomSeed(analogRead(0));
      servo.attach(9);
      Serial.begin(115200);
      const char *helloWorld = {"Hello world."};
      Serial.println(helloWorld);
      }
      void loop() {
      static int elapsedSeconds = 0;
      // random position - 0 to 180
      pos = random(180);
      // random delay - 500 to 1500 miliseconds
      delayMs = random(500, 1500);
      // set the angle and wait
      servo.write(pos);
      delay(delayMs);
      }

    • @igotslickshoes
      @igotslickshoes 20 дней назад

      @@mudspringerwhere do you put the code? Is the USB connected to a computer?