LAFVIN LAFVIN
LAFVIN LAFVIN
  • Видео 23
  • Просмотров 30 297

Видео

LAFVIN Smart Solar Tracker System Tracking Starter Kit For Arduino
Просмотров 9639 месяцев назад
LA042
LAFVIN Arduino Smart Robot Car Kit For Uno R3 With Tutorial, Support Cod
Просмотров 5659 месяцев назад
LA038
LAFVIN Arduino Starter Kit for Arduino UNO R3 Provide Tutorial for Beginner Learning
Просмотров 1,7 тыс.9 месяцев назад
LA037
LAFVIN DIY 4-DOF Robot Kit Panda Robot Compatible with Arduino Nano with Tutorial
Просмотров 7659 месяцев назад
LAFVIN DIY 4-DOF Robot Kit Panda Robot Compatible with Arduino Nano with Tutorial
LAFVIN Smart Robot Car Kit Compatible With Arduino Include Uno R3 Ultrasonic Sensor Bluetooth
Просмотров 4039 месяцев назад
LAFVIN Smart Robot Car Kit Compatible With Arduino Include Uno R3 Ultrasonic Sensor Bluetooth
LAFVIN R3 Project Super Starter Kit for Arduino UNO R3 with Tutorial Compatible with Arduino IDE
Просмотров 1,7 тыс.9 месяцев назад
LAFVIN R3 Project Super Starter Kit for Arduino UNO R3 with Tutorial Compatible with Arduino IDE
Soldering Iron Kit 60W/110V Adjustable Temperature Portable Electronics Soldering Kit
Просмотров 339 месяцев назад
Soldering Iron Kit 60W/110V Adjustable Temperature Portable Electronics Soldering Kit
LAFVIN Esp32 Wifi Intelligent Car Robotic Kit Para Arduino
Просмотров 3,4 тыс.Год назад
LAFVIN Esp32 Wifi Intelligent Car Robotic Kit Para Arduino
LAFVIN Esp32 Basic Starter Kit Wifi Iot For Arduino With Tutorial
Просмотров 662Год назад
LAFVIN Esp32 Basic Starter Kit Wifi Iot For Arduino With Tutorial
LAFVIN Smart Robot Car 2wd Chassis Kit For Arduino With Tutorial
Просмотров 8 тыс.Год назад
LAFVIN Smart Robot Car 2wd Chassis Kit For Arduino With Tutorial
LAFVIN Smart Robot Car Kit Compatible With Arduino Include Uno R3
Просмотров 4,8 тыс.Год назад
LAFVIN Smart Robot Car Kit Compatible With Arduino Include Uno R3

Комментарии

  • @gearedup7353
    @gearedup7353 13 дней назад

    I am looking for the instructions for the kit. Can you post a link please?

  • @RockyAggabao
    @RockyAggabao 23 дня назад

    Can you please share the code for my school project only please

  • @RockyAggabao
    @RockyAggabao 23 дня назад

    Can you please share the code for my school project only please

  • @mariomarjalinojr.3908
    @mariomarjalinojr.3908 25 дней назад

    How to connect to the phone and how to code?

  • @cesar_gabino
    @cesar_gabino Месяц назад

    Me puedes proporcionar el código del control en app inventor de ese proyecto

  • @_OmNikam
    @_OmNikam Месяц назад

    How can i buy this ?

  • @SergioHernández-g9u
    @SergioHernández-g9u Месяц назад

    Me puedes pasar la programación

  • @cesarangelhernandezmerchan2194
    @cesarangelhernandezmerchan2194 Месяц назад

    How can I download the application to control the car

  • @brindis4
    @brindis4 2 месяца назад

    Works for iPhone ?

  • @BT-hub1
    @BT-hub1 2 месяца назад

    Please can i get the complete tutorial on how to set it up.

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

    App for iPhone ?

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

    how i can install the app

  • @KeyladanielaMorales-vd5is
    @KeyladanielaMorales-vd5is 3 месяца назад

    Es que yi tengo ese kit pero no tengo su código

  • @KeyladanielaMorales-vd5is
    @KeyladanielaMorales-vd5is 3 месяца назад

    Me podrías pasar el código

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

    Agregar diagrama de cableado por fabor

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

    Podrian proporcionar los codigos para programar el sensor ultrasonico

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

    :3 👍👍

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

    Cómo puedo contactarme con ustedes es urgente

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

    Cuál es el código de la cámara ya me conéctate con el vendedor incluso les mandé correo desde su página y nada.

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

    Please update the app and put the ultrasonic obstacle avoidance

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

    need help my esp32 cam wrong uploaded code how i can return to original one

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

    Can anyone give me the code for IR control of the robot car, because I cannot find any tutorials, please?

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

      Excuse me, were you able to get the programming of the robot shown in the video yet?

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

      @@sergioirineocardoza3399 No, I couldn't find any resources to find the programming.

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

      @@sergioirineocardoza3399 no

    • @alexlevchenko8896
      @alexlevchenko8896 2 месяца назад

      You need smth like 'SimpleReceiver.cpp' #include "PinDefinitionsAndMore.h" #include <IRremote.hpp> // include the library int IR__PIN= 12; // maybe another void setup() { pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); Serial.begin(9600); IrReceiver.begin(IR__PIN, false);//IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK); Serial.print(F("Ready to receive IR signals of protocols: ")); printActiveIRProtocols(&Serial); Serial.println(F("at pin " STR(IR__PIN)));//Serial.println(F("at pin " STR(IR_RECEIVE_PIN))); Serial.println("start"); } void loop() { if (IrReceiver.decode()) { if (IrReceiver.decodedIRData.protocol == UNKNOWN) { Serial.println(F("unknown protocol")); IrReceiver.printIRResultRawFormatted(&Serial, true); IrReceiver.resume(); } else { IrReceiver.resume(); IrReceiver.printIRResultShort(&Serial); IrReceiver.printIRSendUsage(&Serial); } Serial.println(); if (IrReceiver.decodedIRData.command == 0x40) // or any other {Serial.println("test 1");} else if (IrReceiver.decodedIRData.command == 0x46) {Serial.println("test 2");} }

    • @SanjayKoripelli
      @SanjayKoripelli 2 месяца назад

      @@alexlevchenko8896 Thank you!

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

    cual es la aplicacion que utiliza?

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

    you are LAFVIN so bad dis like for you !!!!!!!!!!!!!

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

    I got to have one. Uhhhhh im a big kid. Love arduino

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

    Hello, why can't I install the Bluetooth controller app? When I tried on my phone, it says that the file can't be opened.

  • @onakarkalra-ub5mb
    @onakarkalra-ub5mb 6 месяцев назад

    is there any kind of Arduino UNO code/ feature that would not work with this kit?

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

    can you make a video on how to assemble this device?

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

    I bought one of this and is not being possible to upload code. I've sent emails and contact through the web page... no answer yet....

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

    Can you put the code somewhere?

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

      Please contact the merchant you purchased from

  • @jesustzinmejillatzin
    @jesustzinmejillatzin 7 месяцев назад

    Por favor, algún instructivo del cableado del proyecto.

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

      Please contact the merchant you purchased from

  • @040roytawansura3
    @040roytawansura3 7 месяцев назад

    Please I want to get all your code.

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

      Please contact the merchant you purchased from

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

      ​@@LAFVINLAFVINdisculpe lo compre en mercado libre como le hago?

  • @johnproudlock2900
    @johnproudlock2900 7 месяцев назад

    hi do you have the wiring diagram and code you could share please

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

      Please contact the merchant you purchased from

  • @kielalterado1934
    @kielalterado1934 7 месяцев назад

    Do you have a tutorial?

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

      Please contact the merchant you purchased from

  • @kenshinyoro1312
    @kenshinyoro1312 7 месяцев назад

    Can you put the schematic diagram here?

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

      Please contact the merchant you purchased from

  • @promothamazumder5318
    @promothamazumder5318 7 месяцев назад

    Does Primarily it needs Programing????

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

      Please contact the merchant you purchased from

  • @MJJm-wx3oq
    @MJJm-wx3oq 7 месяцев назад

    Can you take a full tutorial, please?

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

      Please contact the merchant you purchased from

  • @amcfufo6939
    @amcfufo6939 7 месяцев назад

    infrared code from the Documentation DONT WORKS . please help

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

      Please contact the merchant you purchased from

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

      Hello Did you successfully run the line tracking sensor? 😢

  • @jesuscruzcruzgallegos2665
    @jesuscruzcruzgallegos2665 8 месяцев назад

    Cómo es la programación es algo con lo que he batallado

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

      Please contact the merchant you purchased from

  • @duskoli
    @duskoli 8 месяцев назад

    Tell me how to set it up please.... i need idk how to install everything for my arduino

  • @emerson8884
    @emerson8884 8 месяцев назад

    *promosm* 🌈

  • @elijah9790
    @elijah9790 8 месяцев назад

    code for infrared

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

      Please contact the merchant you purchased from

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

      Hello Did you successfully run the line tracking sensor?

  • @jacobharris2193
    @jacobharris2193 9 месяцев назад

    Hi! Where can I get the app??

    • @damkinggoy7824
      @damkinggoy7824 7 месяцев назад

      Where i can get the tutorial set up?

    • @marisolrcarbajal
      @marisolrcarbajal Месяц назад

      Do you have the code for the Arduino? I have not been able to get it to work with the one it comes with for installation.

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

      Lo conseguiste?, podrás ayudarme ​@@marisolrcarbajal

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

    i have a question in thje kit , kinds of the resistences, how much ohms it have

    • @LAFVINLAFVIN
      @LAFVINLAFVIN 9 месяцев назад

      There are three kinds of resistors, 220 ohms, 1k ohms, 2k ohms

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

    is there any tutorial for coding? i cant run it because it having an error

    • @scorpiontec6645
      @scorpiontec6645 8 месяцев назад

      im having the same problem

    • @vidhyakiru
      @vidhyakiru 8 месяцев назад

      @@scorpiontec6645 same with us..very hard to troubleshoot. Sent support an email with no response

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

      @@scorpiontec6645 ya somos 3, encontraron alguna solución?

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

      Have any of you been able to get it working yet?

    • @alexlevchenko8896
      @alexlevchenko8896 2 месяца назад

      maybe you need CH340G converter