Diy touch sensors

Поділитися
Вставка
  • Опубліковано 31 гру 2024

КОМЕНТАРІ • 79

  • @abelmasresha1005
    @abelmasresha1005 2 роки тому +4

    Great work. It works for me. But how can i use for fade or dimmer light this sensor? Thank you

    • @nielsdaemen
      @nielsdaemen 7 місяців тому +1

      Simply increase or decrease a variable depending on the state of two sensors. Or implement a dimming system with just one sensor, just changing the brightness up/down until you release it

  • @jojo-wc6ni
    @jojo-wc6ni Рік тому +2

    Hello I have the problem that when I leave the Arduino on after a few minutes the L LED flashes and the button no longer works properly.
    Any idea how I could fix this?

  • @cigga_b4170
    @cigga_b4170 Рік тому +1

    If I want to find some other material to stick on the touch, is it still working other than tape? can you advise me

    • @TooSlowTube
      @TooSlowTube 5 місяців тому

      Any thin non-conductive physical barrier should work. The TIP223 touch sensors work with a finger within about 2mm (1/16") of the touch plate, on the non-conductive side of the board, so it's about distance rather than actual touch.

  • @giovannifarese6801
    @giovannifarese6801 3 роки тому +1

    Bellissimo!!! Augurissimi Prof

    • @espelett
      @espelett  3 роки тому +1

      Ah ah, grazie per il prof. Comunque tanti auguri anche a te.

  • @MaxParadiz
    @MaxParadiz 2 роки тому +1

    Very cool! I wonder if it would be possible to use a single asymmetric object with a capacitance change that depends on whether you slide a finger in one direction or another. So, sliding the finger up might increase the capacitance by a bit, and sliding down will decrease it. By measuring over the timeframe that the object is within the "being touched" capacitance range, you can use a single object with a single pin connection to scroll up or down.

    • @espelett
      @espelett  2 роки тому +1

      I don't think it's a simple task. Sliders can be implemented by using several sensors. Here you can find some useful information ww1.microchip.com/downloads/en/Appnotes/Capacitive-Touch-Sensor-Design-Guide-DS00002934-B.pdf

  • @bahaajobs
    @bahaajobs Рік тому

    Thank you, this is very nice project, but have you noticed this touchpad will not work if your body touching the ground? is there a solution for this?

  • @JustinRussell-w4j
    @JustinRussell-w4j 3 місяці тому

    What board are you using? Could you provide a link to the board, so I can get one? I'm trying to use a Feather32u4 board from Adafruit, but it isn't working. I just need help figuring out what boards would work. Thanks!

    • @espelett
      @espelett  3 місяці тому

      It is the classic Arduino Nano Nano V3.0 a.co/d/bC6elhf

  • @arisoda
    @arisoda Рік тому

    Any idea how much power this draws when NOT touching the sensor? I'm curious whether I can make a really small device like this that only runs on a 3V button battery...

    • @espelett
      @espelett  Рік тому

      I don't know the exact current consumption, but I think it is not reccomended for battery operation because the mcu should be running continuosly (no sleep mode).

    • @arisoda
      @arisoda Рік тому

      @@espelett That's a fair point! Although what if I used a simple push button? Does that also require the mcu to run continuously?

  • @alexn.2199
    @alexn.2199 7 місяців тому +1

    What is if on these buttons get Water? Does it reconize water as a Klick/touch?

  • @ryanschmitt5053
    @ryanschmitt5053 Рік тому

    I love this tutorial. My main question would be is it possible to define a different sensitivity threshold for each sensor? I want to make one that could work my just getting close to it.

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      It's possible if you edit the code. You could put it as a value of the structure (called touchPad) that's defined and set the value upon initialization. However setting the threshold too low will get you false positives. See the example in the graph when debug is enabled, there one of the pins is at a value of 40 already. And that value depends on atmosphere and the object it's connected to. The closer your value is to the non-touched state, the higher the chance of false positives.

  • @ahmedmedhat4428
    @ahmedmedhat4428 2 роки тому

    Thanks for the great tutorial, but I have a question: How can I read the raising edge

  • @MohitSharma-lm2sb
    @MohitSharma-lm2sb Рік тому +1

    What do I need to change if I want touch means 1 and not touching to mean 0?? I tried reading the code, but some parts were too advanced

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      Yes, read the touchPad structure. E.g. (touchPad1.state == 1) means on

  • @dw0x
    @dw0x 5 місяців тому

    Does this implementation work with the ATSAMD21G18?

  • @YFTOUCH
    @YFTOUCH Рік тому +1

    You are really wonderful!

  • @JB-zv4sv
    @JB-zv4sv Рік тому

    does it work under glass?

  • @ajpranata4053
    @ajpranata4053 2 роки тому +1

    awesome video, thanks !

  • @yousefelgredly241
    @yousefelgredly241 Рік тому

    Thank you for this tutorial 🥰🥰
    but i have a question , is that sensor work with other objects like ball ?

  • @silasgeerts1736
    @silasgeerts1736 11 місяців тому

    If i use a multiplexer to add more analog pins can i get 12 sensors to work?

    • @espelett
      @espelett  10 місяців тому

      You can try, but I don't think it will work.

    • @silasgeerts1736
      @silasgeerts1736 10 місяців тому

      Thank you, I tried and I did indeed not work but I think I found an other way to do what I want.

  • @cigga_b4170
    @cigga_b4170 Рік тому

    How we choose matterial for touch if i want to install touch to project such as i want to install to my lamp , pls advice

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      Needs to be conductive, but preferably with a somewhat thin non-conductive layer in between so that you're not shorting poor body to the pin.

  • @jeremielegroux4487
    @jeremielegroux4487 Рік тому

    nice job!.I 'm using the "capacitvesensor" library but unfortunately, it needs to be plugged to the earth.. does this circuit requires to be grounded?

    • @espelett
      @espelett  Рік тому

      No, it doesn't. Try it.

  • @sijojohnson
    @sijojohnson 2 роки тому

    does this single wire sensing is available for STM 32 chip?
    i need to detect 10 channels.

    • @espelett
      @espelett  2 роки тому +1

      Sorry, I don't know if It works on stm32.

  • @allantamm2185
    @allantamm2185 2 роки тому

    Now it would be interesting to see another arduino that is able to contactlessly switch the first one..

  • @techs5564
    @techs5564 2 роки тому

    can these touch pads used to play specific tracks of mp3 in df player mini?

    • @espelett
      @espelett  2 роки тому

      Yes.

    • @techs5564
      @techs5564 2 роки тому

      @@espelett thanks, i tried and it worked flawlessly. Now my issue is when the touch pad size increases i have to set threshold and samples again. Any way to do it auto?

  • @elenaherrmann8122
    @elenaherrmann8122 Рік тому +1

    Hello, thank you for this great tutorial! Do you think it is possible to include a MUX (e.g. CD4067B, 16 channels) to increase the number of touch sensors? Would I then connect the SIG of the MUX with one of the ANALOG pins on the Arduino? Or do you have a better idea for a setup? Thanks again! 🙂

    • @christobacon1
      @christobacon1 Рік тому

      I bet this could be done on a mega which has 16 analog pins ¯\_(ツ)_/¯

  • @shispices1495
    @shispices1495 4 місяці тому

    if you don't mind can you demonstrate MS51FB9AE MicroController it's 8051 family PLZ

  • @JoinToHell1
    @JoinToHell1 Рік тому

    Will this work okay with 60 sensors?

  • @rodrigocirilo7343
    @rodrigocirilo7343 11 місяців тому

    Do you have pic version?

  • @bigmac9712
    @bigmac9712 Рік тому

    Why the A0 pin has to be disconnected?

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      Probably used as reference for the other pins. So basically to compare the state of an unconnected pin to one being touched (or not touched). This is a guess though.

  • @binal5542
    @binal5542 Рік тому

    I tried with uno but nothing happening . Changed the sensitivity but still no response . Please help . When upload it’s successful but with warning about “typedef struct “.

    • @espelett
      @espelett  Рік тому

      Hello. The sketch should work without any modifications, I've tested it on different models of Arduino. The typedef warning is not critical. Have you checked all the connections and led polarity? Keep in mind, don't touch sensors during Arduino startup (while applying power).

  • @techs5564
    @techs5564 2 роки тому

    is it possible to set threshold and samples automatically?

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      Yes, implement a startup sequence that reads the current values and add a safe percentage to it as threshold. You can add a threshold property to the structure to keep these values per sensor

  • @JarppaGuru
    @JarppaGuru 10 місяців тому

    8:12 those you need if make pcb ncoz it wont work same as breadboard

  • @melvinfisch3268
    @melvinfisch3268 Рік тому

    Hey Nice Video thanks, Im wonderin if i can programm it with 2 Led strips like this.. 1 touch= LED bottom On, 2 touches in a row = LED Top On, 3 touches in a row= LED Bottom and Top On? Thanks for the Respons :)

    • @qwertyboguss
      @qwertyboguss 11 місяців тому

      Yes it's possible you need to add that to your arduino code. Keep track of time/ticks or implement a counter that checks on/off/on withing a given time period.

  • @KSAC_Lab
    @KSAC_Lab 2 роки тому

    Fantastic!
    Does this also work on esp32?
    And can we touch it through a lcd screen?
    Thank you!
    KSAC

    • @espelett
      @espelett  2 роки тому

      I didn't try on esp32. I think that an LCD screen is too thick ti male it work.

    • @KSAC_Lab
      @KSAC_Lab 2 роки тому

      @@espelett Thank you! What method do you think is the best way to make a touch lcd screen?

  • @tecnologiaespiritual33
    @tecnologiaespiritual33 2 роки тому +1

    Se puede utilizar Arduino uno?

  • @bimokayoba
    @bimokayoba Рік тому

    i am getting electrical shocks when touching the sensor, please help

    • @EveronesInvited
      @EveronesInvited 6 місяців тому

      Lick your fingers first

    • @bimokayoba
      @bimokayoba День тому

      Still same problem​@@EveronesInvited

  • @fasti8993
    @fasti8993 2 роки тому

    Could this be done on the Pi pico using Python?

    • @espelett
      @espelett  2 роки тому

      No, the Raspberry doesn't have any ADC.

    • @fasti8993
      @fasti8993 2 роки тому

      @@espelett I'm not talking about the Raspberry Pi, I'm talking about the Pi Pico, the new microcontroler from the released by the Pi foundation. It does have ADCs

    • @espelett
      @espelett  2 роки тому

      Oh, I don't know this model, and this technique require a very good knowing of the ADC and its multiplexer. Anyway, I wouldn't use Phyton (even the Arduino language is quite inadequate, this is just an experiment).

  • @jackisgoofingoff5510
    @jackisgoofingoff5510 Рік тому

    My eye: Watch til the end
    My brain: ??

  • @naols5577
    @naols5577 2 роки тому

    Hey 👋,
    I love your circuit but I'd like to replicate it with more than 5 inputs.
    I saw on UA-cam that a lot of people do the same diagram but with digital pins instead of analog.
    (But you can't press all of them at the same time...)
    I know you may use float values with your code so you want analog inputs, but it would be amazing to use the digital ones (because with an Arduino mega I could connect up to 50 sensors).
    Do you think it's possible ? And if so can you use the same code with small modifications or do I have to change the diagram circuit ?

    • @espelett
      @espelett  2 роки тому +1

      Hi. This method works only with analog pins. There is a library (called CapacitiveSensor) that allow you to use digital pins, but it needs 2 pins for every sensor. Another method for using a digital pin is to connect it to VCC via a very large resistor (in the order of Mega Ohms), but for this to work your body has to be connected to ground (not very practical).

    • @naols5577
      @naols5577 2 роки тому

      @@espelett I will continue to search. Thank you.

  • @binal5542
    @binal5542 Рік тому

    Music is nice and far in the back

  • @yoashuain1
    @yoashuain1 Рік тому

    The outcome is hidden. Who knows if this would work?

    • @espelett
      @espelett  Рік тому

      The video starts and ends with the circuit working. Which part are you missing?

  • @JarppaGuru
    @JarppaGuru 10 місяців тому

    7:09 then disconnected it. it connected breadboard now. it has capasitance LOL

  • @JarppaGuru
    @JarppaGuru 10 місяців тому

    5:20 why? is not measure what touchplate ghive normal then know if it touched. why need A0 LOL

  • @nielsgrote
    @nielsgrote 3 роки тому +3

    great but music terrible ;-)

    • @espelett
      @espelett  3 роки тому

      You're absolutely right, but it's necessary to mask the artificial voice.