Тёмный

Diy touch sensors 

Esperienze elettroniche
Подписаться 2,8 тыс.
Просмотров 38 тыс.
50% 1

Опубликовано:

 

20 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 76   
@alexn.2199
@alexn.2199 4 месяца назад
What is if on these buttons get Water? Does it reconize water as a Klick/touch?
@jojo-wc6ni
@jojo-wc6ni Год назад
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?
@JustinRussell-w4j
@JustinRussell-w4j День назад
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 День назад
It is the classic Arduino Nano Nano V3.0 a.co/d/bC6elhf
@shispices1495
@shispices1495 Месяц назад
if you don't mind can you demonstrate MS51FB9AE MicroController it's 8051 family PLZ
@bahaajobs
@bahaajobs 10 месяцев назад
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?
@abelmasresha1005
@abelmasresha1005 2 года назад
Great work. It works for me. But how can i use for fade or dimmer light this sensor? Thank you
@nielsdaemen
@nielsdaemen 3 месяца назад
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
@giovannifarese6801
@giovannifarese6801 2 года назад
Bellissimo!!! Augurissimi Prof
@espelett
@espelett 2 года назад
Ah ah, grazie per il prof. Comunque tanti auguri anche a te.
@YFTOUCH
@YFTOUCH Год назад
You are really wonderful!
@MaxParadiz
@MaxParadiz 2 года назад
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 года назад
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
@dw0x
@dw0x 2 месяца назад
Does this implementation work with the ATSAMD21G18?
@ajpranata4053
@ajpranata4053 2 года назад
awesome video, thanks !
@yousefelgredly241
@yousefelgredly241 Год назад
Thank you for this tutorial 🥰🥰 but i have a question , is that sensor work with other objects like ball ?
@ahmedmedhat4428
@ahmedmedhat4428 Год назад
Thanks for the great tutorial, but I have a question: How can I read the raising edge
@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 8 месяцев назад
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.
@cigga_b4170
@cigga_b4170 Год назад
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 Месяц назад
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.
@elenaherrmann8122
@elenaherrmann8122 Год назад
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 9 месяцев назад
I bet this could be done on a mega which has 16 analog pins ¯\_(ツ)_/¯
@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.
@allantamm2185
@allantamm2185 Год назад
Now it would be interesting to see another arduino that is able to contactlessly switch the first one..
@MohitSharma-lm2sb
@MohitSharma-lm2sb Год назад
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 8 месяцев назад
Yes, read the touchPad structure. E.g. (touchPad1.state == 1) means on
@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 8 месяцев назад
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.
@JB-zv4sv
@JB-zv4sv Год назад
does it work under glass?
@KSAC2716
@KSAC2716 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.
@KSAC2716
@KSAC2716 2 года назад
@@espelett Thank you! What method do you think is the best way to make a touch lcd screen?
@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?
@JoinToHell1
@JoinToHell1 Год назад
Will this work okay with 60 sensors?
@silasgeerts1736
@silasgeerts1736 7 месяцев назад
If i use a multiplexer to add more analog pins can i get 12 sensors to work?
@espelett
@espelett 7 месяцев назад
You can try, but I don't think it will work.
@silasgeerts1736
@silasgeerts1736 7 месяцев назад
Thank you, I tried and I did indeed not work but I think I found an other way to do what I want.
@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).
@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 8 месяцев назад
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.
@JarppaGuru
@JarppaGuru 7 месяцев назад
8:12 those you need if make pcb ncoz it wont work same as breadboard
@zerinoggonzalez9726
@zerinoggonzalez9726 Год назад
Se puede utilizar Arduino uno?
@espelett
@espelett Год назад
Si.
@sijojohnson
@sijojohnson Год назад
does this single wire sensing is available for STM 32 chip? i need to detect 10 channels.
@espelett
@espelett Год назад
Sorry, I don't know if It works on stm32.
@binal5542
@binal5542 Год назад
Music is nice and far in the back
@rodrigocirilo7343
@rodrigocirilo7343 8 месяцев назад
Do you have pic version?
@bigmac9712
@bigmac9712 11 месяцев назад
Why the A0 pin has to be disconnected?
@qwertyboguss
@qwertyboguss 8 месяцев назад
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.
@bimokayoba
@bimokayoba 10 месяцев назад
i am getting electrical shocks when touching the sensor, please help
@EveronesInvited
@EveronesInvited 3 месяца назад
Lick your fingers first
@techs5564
@techs5564 Год назад
can these touch pads used to play specific tracks of mp3 in df player mini?
@espelett
@espelett Год назад
Yes.
@techs5564
@techs5564 Год назад
@@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?
@techs5564
@techs5564 Год назад
is it possible to set threshold and samples automatically?
@qwertyboguss
@qwertyboguss 8 месяцев назад
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
@jackisgoofingoff5510
@jackisgoofingoff5510 11 месяцев назад
My eye: Watch til the end My brain: ??
@JarppaGuru
@JarppaGuru 7 месяцев назад
7:09 then disconnected it. it connected breadboard now. it has capasitance LOL
@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?
@naols5577
@naols5577 2 года назад
Hey 👋, I love your circuit but I'd like to replicate it with more than 5 inputs. I saw on RU-vid 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 года назад
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.
@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).
@nielsgrote
@nielsgrote 2 года назад
great but music terrible ;-)
@espelett
@espelett 2 года назад
You're absolutely right, but it's necessary to mask the artificial voice.
@JarppaGuru
@JarppaGuru 7 месяцев назад
5:20 why? is not measure what touchplate ghive normal then know if it touched. why need A0 LOL
@aqillahhadi3505
@aqillahhadi3505 3 дня назад
what are u saying LOL
Далее
Sensors - which one to use
17:06
Просмотров 1,3 млн
How Capacitive Touch Screens Work
6:15
Просмотров 158 тыс.
Breadboard capacitive touch sensor tutorial
15:13
Просмотров 88 тыс.
Arduino Capacitive Touch-Free Touch Sensor Tutorial
31:12
DIY Capacitive Touch PCBs
24:57
Просмотров 25 тыс.
Things you can make from old, dead laptops
19:03
Просмотров 12 млн
The coolest robot I've ever built!
19:40
Просмотров 4,6 млн
TTP223 Capacitive Touch Switches
9:18
Просмотров 84 тыс.
DIY sonar scanner (practical experiments)
14:30
Просмотров 1 млн