Sir, i like this project .my school projects are ahead is there any we can use this module to make the school bell ring at a particular time . I have a relay I need to make it using the LCD dispaly
@ZenoModiff8 күн бұрын
Yes, you can use this concept to ring a bell at a particular time, use an LCD to show the time and a relay to trigger the bell.
@rayeesrafi54299 күн бұрын
Ithoke nthaan vro ?
@ZenoModiff9 күн бұрын
esp32 cam module
@shaqfarhan20 күн бұрын
can i use arduino uno and connect with Lora 433Mhz? and can i use the same coding?
@ZenoModiff20 күн бұрын
yes you can use it but select the board name as arduino uno
@princealahi63672 ай бұрын
Excellent project ❤❤❤
@connermcfortu48352 ай бұрын
Salve, è possibile fare un cronometro con questo display 8x32 ? Grazie Hi, is it possible to make a stopwatch with this 8x32 display? Thanks
@Raj_Captain2 ай бұрын
Code plz
@ZenoModiff2 ай бұрын
please check the video description
@GuruTamatam2 ай бұрын
library comes not found
@itzspellon13303 ай бұрын
this deosnt work... -_-
@TanayKarn201473 ай бұрын
it worked but now im getting compilation error for no reason.
@jefftheoriginal23 ай бұрын
could i have the code for this please?
@asankapriyanjith21973 ай бұрын
Where the code
@ZenoModiff3 ай бұрын
Please Check the description of the video
@studytechhindi39953 ай бұрын
without using any transistor arduino/ ATMEGA328 can handle this type of display current amount? 30mA is needed for each led to glow, then approx 1amp. of current need to glow a digit....
@ZenoModiff3 ай бұрын
Try it will work 😅
@SonnyTechAcademy4 ай бұрын
please is the fingerprint data value still valid as at now?
@ryanhuam41624 ай бұрын
Is it the same formula if I am using a MQ3 sensor and need to convert to ppm values?
@ZenoModiff4 ай бұрын
yes it is the same
@Imrankhan143785 ай бұрын
I make this project today and i want to add buzzer kindly help me
@D4RK-f4x5 ай бұрын
can you show me the code bro
@mdaslamknl6 ай бұрын
Excellent Can you share the code Thanks
@ZenoModiff6 ай бұрын
it was on the description , for you here is the link to the code github.com/Zenomodiff/Atmospheric-Gas-Ananlyser-With-MQ-Series-Sensors-Dht-11/blob/main/Atmospheric_Gas_Analyser.ino
In the above video you have not shown were to connect SCL & SDA PINS TO WHICH PINS OF ARDUINO PLS REPLY
@ZenoModiff7 ай бұрын
SCL -- A5 SDA -- A4
@angomnaresh98597 ай бұрын
It's really worked however I am unable to adjust the real time even though it has button, please explain, Sir.
@ZenoModiff7 ай бұрын
did you use the correct comport to upload the code also check the bootloader which is the old one and the new one is there in the arduino nano
@malayvadgama73807 ай бұрын
I want the whole code used for the working of the system
@AlexandreAdoukonou8 ай бұрын
Code Arduino
@mariuspetcu74828 ай бұрын
As long as we Don't Have the SPECIFIC Library you used - NO WAY to work ... I have trayed probably 60 Codes by know in 2 months from all over the places from internet but 90% of them get's the same errors : /////////// sketch_mar01a:7:20: error: no matching function for call to 'DS3231::DS3231(const uint8_t&, const uint8_t&)' DS3231 rtc(SDA, SCL); ///////////////
@todayporpular128 ай бұрын
please give me source code
@annadmitrenko38389 ай бұрын
Really useful video! Ty bro, you helped with project
@mizinko33019 ай бұрын
The code for this circuit #include <SPI.h> #include <MFRC522.h> #define SS_PIN 10 #define RST_PIN 9 #define LED_G 5 #define LED_R 4 MFRC522 mfrc522(SS_PIN, RST_PIN); void setup() { Serial.begin(9600); SPI.begin(); mfrc522.PCD_Init(); pinMode(LED_G, OUTPUT); pinMode(LED_R, OUTPUT); Serial.println("put your card"); Serial.println(); } void loop() { // Look for new cards if ( ! mfrc522.PICC_IsNewCardPresent()) { return; } // Select one of the cards if ( ! mfrc522.PICC_ReadCardSerial()) { return; } String content= ""; byte letter; for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "); Serial.print(mfrc522.uid.uidByte[i], HEX); content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ")); content.concat(String(mfrc522.uid.uidByte[i], HEX)); } Serial.println(); Serial.print("Message : "); content.toUpperCase(); if (content.substring(1) == "4B F8 C6 67") { Serial.println("successful"); Serial.println(); delay(500); digitalWrite(LED_G, HIGH); delay(2000); digitalWrite(LED_G, LOW); delay(2000); } else { Serial.println("faild"); digitalWrite(LED_R, HIGH); delay(2000); digitalWrite(LED_R, LOW); delay(2000); } }
@themangosteen91449 ай бұрын
Do not connect to 5v it will burn RFID Module, its supposed to be 3.3
@jason_man9 ай бұрын
How did you light up leds without a resistor wouldnt it burn with arduino?
@ZenoModiff9 ай бұрын
Nope it won't burn
@Roger-e4t10 ай бұрын
Straight to the point! Great Video. I have two question, 1)) lets say Besides the 8266 was populanting the data into the Firebase, i also would have an Android doing the some data population into the Firebase, and instead reading only from a 8266´s generated randon number could i read from Firebase into the 8266 to process Android data? - In summary Can i write Firebase from 8266 and Can i read from Forebase to 8266?2) I notice you used a delay of 10000, if i have a sample rate of 100 Hz, which means a new data value entry every 10 mili second, can a have a very small delay into the 8266 sketch in order to not disturb the sample rate of the project? Many thanks in advance. Roger
@Kajal_199710 ай бұрын
@ZenoModiff sir Can u upload video for interfacing Arduino Uno with Ds3231 rtc display and 16*2 normal lcd display but don't use i2c 16*2 lcd ...I want time and date in normal 16*2 display can u make video with full explanation including library installation process too plz it's an urgent
@code177811 ай бұрын
Getting error <<<stack<<< With some random number and characters
@PrajjwalDubey0211 ай бұрын
Hi. The D10 pin is not giving power output what should i do?
@SyedDaniyalAsgharAli11 ай бұрын
this is a good work but steps are missing . i was making this but i am having trouble between connectivity because i am not electronics student
@ZenoModiff11 ай бұрын
Which part do you need clarity ? With the wiring ?
@SyedDaniyalAsgharAli11 ай бұрын
@@ZenoModiff yes i need clarity with the wiring so i can create this i have all the accessories available
@SyedDaniyalAsgharAli11 ай бұрын
@@ZenoModiff Hi i need clarity with the wiring i have all the equipment's as shown from the sensor to relay module i want full wiring instructions so i can crate this for a project and
@mickredfox Жыл бұрын
Verry Nice, i wondering if it is possible to have a counter for the numbers of downloads from my personal printables or makerbase web page. Thanks for your answer.
@ZenoModiff Жыл бұрын
Yes I guess I can do it , Lemme write a code and will ping you soon
@mickredfox Жыл бұрын
@ZenoModiff that would so great
@mickredfox Жыл бұрын
@ZenoModiff let me know if you succeeded for makerbase and printables. I think it is verry hard.
@hoangnam5848 Жыл бұрын
what's the library pls
@default19in Жыл бұрын
Tx for explaining the code sir.
@federickgregorio511 Жыл бұрын
how to do that using wifimanager library
@paulygrows420 Жыл бұрын
Will u build me one ? How much?
@TofuTheLhasa Жыл бұрын
where to connect the i2c board?
@Gamma_Wale Жыл бұрын
Didi you get anything in this career.?
@AbhishekKanti Жыл бұрын
Is 'ppm_log' giving us ppm value directly or we have to take antilog?
@DeepakCG Жыл бұрын
where is the code ? please share the same
@farhadh.jafarpour3025 Жыл бұрын
The code provided by this guy is not the right one shown in the video. This code is for another project. Hope he sends the right code.
@ZenoModiff Жыл бұрын
I have pinned the code
@farhadh.jafarpour3025 Жыл бұрын
@@ZenoModiff Dear Sir, There is no photoresistor in your project. Please let us know why you define a LDR pin your code? And also, where are the pin definitions for your pushbuttons in your code? Maybe I am wrong.