TTP223  Capacitive Touch sensor
9:14
ESP32 CAM module - Getting started
19:27
Пікірлер
@nurhayatin.lr.2713
@nurhayatin.lr.2713 Күн бұрын
#include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,16,2); int lowerThreshold = 310; int upperThreshold = 510; // Sensor pins #define sensorPower 7 #define sensorPin A0 int val = 0; // Value for storing water level void setup() { Serial.begin(9600); lcd.init(); lcd.backlight(); pinMode(sensorPower, OUTPUT); digitalWrite(sensorPower, LOW); } void loop() { int level = readSensor(); if (level == 0) { Serial.println("Water Level: Empty"); lcd.setCursor(0,0); lcd.print(" WATER LEVEL "); lcd.setCursor(0,1); lcd.print(" EMPTY "); } else if (level > 0 && level <= lowerThreshold) { Serial.println("Water Level: Low"); lcd.setCursor(0,0); lcd.print(" WATER LEVEL "); lcd.setCursor(0,1); lcd.print(" LOW "); } else if (level > lowerThreshold && level <= upperThreshold) { Serial.println("Water Level: Medium"); lcd.setCursor(0,0); lcd.print(" WATER LEVEL "); lcd.setCursor(0,1); lcd.print(" MEDIUM "); } else if (level > upperThreshold) { Serial.println("Water Level: High"); lcd.setCursor(0,0); lcd.print(" WATER LEVEL "); lcd.setCursor(0,1); lcd.print(" FULL "); } delay(1000); } //This is a function used to get the reading int readSensor() { digitalWrite(sensorPower, HIGH); delay(10); val = analogRead(sensorPin); digitalWrite(sensorPower, LOW); return val; }
@industrialelectricalbd6900
@industrialelectricalbd6900 4 күн бұрын
GOOD JOB
@MrBobWareham
@MrBobWareham 5 күн бұрын
I wanted to make your clock, but your code has an error when compiling.'class TM1637Display' has no member named 'setColon' any help please Bob in the UK
@dr.fzt.rafetirmak7713
@dr.fzt.rafetirmak7713 10 күн бұрын
this is a great tutorial for beginners
@jmch1369
@jmch1369 11 күн бұрын
Excelent,Gracias ,,
@easy_3d
@easy_3d 14 күн бұрын
Can i use 4x18650 batteries to power the stepper motor driver board?
@udemeetuk9971
@udemeetuk9971 15 күн бұрын
Thank you for making this video
@user-uo7th2ms7e
@user-uo7th2ms7e 19 күн бұрын
My rated current is 1.4 Amp. Do I still need to reduce it by 10%?
@karthiknaik8025
@karthiknaik8025 24 күн бұрын
Ho
@flossoul
@flossoul 25 күн бұрын
vey nice animation
@_9829rajulalmeena
@_9829rajulalmeena 26 күн бұрын
Project ke Report h kya
@JohnKawsar-u8v
@JohnKawsar-u8v 29 күн бұрын
Hi friends Thank to this channel I have tested the project and it realy works
@vijayk7152
@vijayk7152 3 күн бұрын
Both led always on condition...could you help
@jpeter3683
@jpeter3683 29 күн бұрын
how to download the code for this project
@omaral-shaal9058
@omaral-shaal9058 Ай бұрын
Brother, it's so amazing how u created a custom library . U need to take a look at the embedded systems field
@elle557
@elle557 Ай бұрын
Gold tutorial. I was having so much trouble understating how to use these and you made it simple and it worked for my project! Thank you for the time you put into this!
@wilsonajax8599
@wilsonajax8599 Ай бұрын
$api_key_value = "tPmAT5Ab3j7F9"; where to get this? thanks
@Starkcreations99
@Starkcreations99 Ай бұрын
Bro please can I get ur Whatsapp number please i have some projects at hand that i need some guardian from you is about this color sensor
@alexandercereno4098
@alexandercereno4098 Ай бұрын
why do i hear clicking sound? no audio output from sd card
@markmcculfor6113
@markmcculfor6113 2 ай бұрын
Love this video! Which stepper motor did you use?
@zmusic2053
@zmusic2053 2 ай бұрын
Sir if we have to add Lcd 16x2 I2c module then what will have to change in code and connection for circuit please reply sir
@tamborileyro
@tamborileyro 2 ай бұрын
hi Tectutor. Working ds3231-rtc-with-arduino-including-digital-clock-using-LCD displayI got your code which calls for ds3231.h and IDE errs : cant find . I fetched this ds3231.h file and got in my disk. How I must tell IDE to consider this file that resides in my computer?. HOW Thanks Dr J
@jaymarcgasino7625
@jaymarcgasino7625 2 ай бұрын
How about a gate?
@Anyvend
@Anyvend 2 ай бұрын
Hi brother, im currently working with stepper motors, im unig arduino sheildv4 with arduino nano. and IM unable to control the motors. the motor is is making little sound. when i try to change the wire (figuring out two coils) it vibrates the motor a lot. not sure where the issue is. can you help me in providing some code to get started with that board? Im surprised why there is not evena single comment yet. Keep going buddy. i wish to see you grow
@choti_master6690
@choti_master6690 2 ай бұрын
My project is working but if we press switch button they automatically close the alam window in 1s.
@choti_master6690
@choti_master6690 2 ай бұрын
Same problem
@choti_master6690
@choti_master6690 2 ай бұрын
Bro can you give the code that you used in this project. Because in this video that code is used error occurred. Setcolon error
@artraver_365
@artraver_365 2 ай бұрын
thanks a lot.... I made this for my sem project💝
@user-bi1ky8se8q
@user-bi1ky8se8q 2 ай бұрын
Great
@izypaul
@izypaul 3 ай бұрын
I have been looking for a thoroughly explained tutorial on the working of TTP223 Touch sensor and I have to say this is one of the best.
@stephensavage8061
@stephensavage8061 3 ай бұрын
Cool project! A couple questions that I hope won't take too long to answer. 1) Are the buttons momentary contact or latching? How would I go about turning this into a sunrise alarm clock--can I just hook an LED cluster to another output pin and start ramping up its rightness a few minutes before the alarm goes off?
@RussSmith-uy2vy
@RussSmith-uy2vy 3 ай бұрын
Before you post it why don't you learn how to speak English
@armanabbasi4384
@armanabbasi4384 3 ай бұрын
It work for 1 kilo meter if you have a transmitter with antenna
@sandeshfitvlogs762
@sandeshfitvlogs762 3 ай бұрын
Give the circuit diagram
@juandavidcamelo6363
@juandavidcamelo6363 3 ай бұрын
I’m new to this , what is the program you use to put your code on ? 4:57 , like in where I should create the code , does it work if I use any IDE or is an specific one ???
@HossamAbdelhafez-sn1pt
@HossamAbdelhafez-sn1pt 3 ай бұрын
can i use 1,8 inch screen instead of 1.44 inch???
@HossamAbdelhafez-sn1pt
@HossamAbdelhafez-sn1pt 3 ай бұрын
can i use 1,8 inch screen instead of 1,44 ?
@farzy3782
@farzy3782 3 ай бұрын
Very good video. 👌
@premc5564
@premc5564 3 ай бұрын
Extremely helpful video! Thanks!
@joshuapurificacion5197
@joshuapurificacion5197 3 ай бұрын
How can I control servo with this using Bluetooth?
@yusufayvz
@yusufayvz 3 ай бұрын
The arduino code give me Error code -1. Can you help me please?
@rafaelalvesdasilva6754
@rafaelalvesdasilva6754 3 ай бұрын
Thank you for the great class teacher! Worked perfectly. Big hug.
@olivieroreggia
@olivieroreggia 3 ай бұрын
Very good work, sir ! Is it possible to change the lux value of BH1750 sensor in W/m2 ? Thank you
@vivisector3489
@vivisector3489 4 ай бұрын
Great to see you making videos again.
@mytectutor
@mytectutor 4 ай бұрын
More to come!
@jamesclinch3105
@jamesclinch3105 4 ай бұрын
Perfect, great description.
@hiu8819
@hiu8819 4 ай бұрын
I tried to do the same wiring and setting according to the video, but why the PWR/Alarm keep blinking and the the motor doesn't rotate🤧?
@shayan_sui
@shayan_sui 4 ай бұрын
i luv u it was super helpful
@Ockhamcool
@Ockhamcool 4 ай бұрын
Thank you so much for this wonderful and clear tutorial! You are an EXCELLENT instructor. I have many years of electronics experience (mostly vacuum tube stuff) but little automation or Arduino experience. However, thanks to your tutorial, everything made perfect sense. In particular, I want to commend your clear and plain identification of the details. Things like exact driver module model and wiring pin outs, schematics and so forth. This kind of info can take a lot of time to root out, and the manufacturers seem oblivious to the need to post it. Your pacing was just right - not too slow, not too fast - and you DID NOT ASSUME that "people already know that". Many do, some don't. Also, the Arduino code was extremely helpful, plus your handy tip on discovering motor winding orientation is worth the price of admission! Well done and thank you. Great job!
@shantarammandave289
@shantarammandave289 4 ай бұрын
Please send components list
@alfred8294
@alfred8294 4 ай бұрын
Thanks for sharing this information. Very helpful. And you are a great teacher.
@fudecreations6074
@fudecreations6074 5 ай бұрын
Please upload next video on making a project on how to convert RFID signal into audio when RFID tag is detected using Arduino atmega ,df player mini and RFID sensor + tag if you don't this I will add 5 subscribers to your channel please please 🥺 I have tried it so many times but I failed😢
@rngresearchandtraininghubr2980
@rngresearchandtraininghubr2980 5 ай бұрын
http request post is not shown in your video
@britinrussia3687
@britinrussia3687 5 ай бұрын
I am not sure how changing the names in the files actually customises it. I followed all the instructions, loaded the code and it wouldn't compile.... a total waste of time! Plus looking below, other people have had problems, but you do not respond???