Nice job. Thanks. BTW, relative to the size of 328 EEPROM -- In 1980, I purchased my first computer: Radio Shack TRS-80 desktop. It's TOTAL RAM was 4k-bytes. The computer cost me $1000 USD. To upgrade to 64K RAM, it was additional $400. I'm 70 years old now and it's very cool to watch & listen to your video information. Thanks.
@DragPlix3 жыл бұрын
using modern age pc's with dope specs and seeing how it all started gets me surprised like how fast we have grown...
@ranjithshetty70783 жыл бұрын
Hi sir r u pilot?
@ferb1rahert2 ай бұрын
I dreamed about watching this video. How much obsessed am I with this pl?
@akeemlouigarde46895 жыл бұрын
You did it man. I understood what was going on. I was able to give in my Lab report on time. Thank you.
@EVERY.CIRCUIT5 жыл бұрын
Nice, but how to save words such as "Ali" or large numbers such as 10000000?
@khomo124 ай бұрын
Very nice! Thank you!
@dawud507011 ай бұрын
Thank you Bro
@shambhusingh50942 жыл бұрын
How to do after 255 count, please explain
@nicolaslac10133 жыл бұрын
Hi, thank you for your job. Just a question about the variable. Do you think it's possible to store data from outside with a keypad and store it into EEPROM ? I've a function like : if (keypressed) ... first = num1 + keypressed; ( int num1 = 0; ) ... EEPROM.put(1, first); when later I call : EEPROM.get(1,first); it doesn't print the variable.
@sainitin27722 жыл бұрын
Thanks for the tutorial and can you please say which app did you use for screen recording
@ste3937-i8n2 жыл бұрын
thank!
@5megatron52 жыл бұрын
¿me help!
@leeaudio0274 жыл бұрын
Stupendous job ,your a great teacher!!!
@naveenvaid43183 жыл бұрын
nice sir but if i want to 10 bit data save into eeprom in arduino uno if possible ...............
@jaa705 жыл бұрын
didn't work, I've written the code as it is on the video, and when I disconect power from arduino and re connect it, the counter start again from zero .....
@davidbolha3 жыл бұрын
Hi, Could you use the Arduino to reset/reprogram various BQXXXX ICs that are usually found in laptop batteries ? 🤔😕 Thanks &.... Best Regards,
@ΚωνσταντίνοςΡάπτης-φ4ξ2 жыл бұрын
Hi. How can I contact with you??
@Core-Electronics2 жыл бұрын
Come jump on the Core Electronic's Forums champ 😊 forum.core-electronics.com.au/
@dhavalshukla66152 жыл бұрын
Hi, nice video. I have been trying to store values read from EEPROM to a variable. for example storing values read from ssid and password from EEPROM. The problem being that the code doesn't seem to work. Here is the snippet: String ssid+=char(EEPROM.read(addr)); this is written in a for loop from 0 to 32 addresses. Idk why this is not working, any ideas and help will really be helpful.
@ousstst60696 жыл бұрын
can the eeprom be used to save a variable value (sensor value) and recover it after a power failure?
@kaoshavoc6 жыл бұрын
Yes, but honestly getting an SSD card reader is cheap easy, and you can remove it put the data on your pc real easy, but if it does not matter if you have the data very portable, then eeprom would be a great way to save the sensor data.
@ousstst60696 жыл бұрын
I tried to save the variable values of the sensor on leeprom it did not work, and I tried with a fix value it works. need help stp
@kaoshavoc6 жыл бұрын
you need to make sure the variable type will fit into the space allotted by eeprom. if you are saving larger data types into bytes of the eeprom, then you will have problems real bad. I suspect that the data type of your variable to be the issue. What data type is the variable you are trying to store?
@swathip14614 жыл бұрын
@@ousstst6069 www.arduino.cc/en/Tutorial/LibraryExamples/EEPROMPut www.arduino.cc/en/Tutorial/LibraryExamples/EEPROMGet This is exactly what you need..
@nagendraprasad3324 жыл бұрын
Please make a video tutorial on gsm module with arduino
@Sarathkumar-lt8gi5 жыл бұрын
It is limited to 256 counts only. Can you tell me how to store more than 256. I have seen 'put' functions but that is also not working yet.
@cladisla4 жыл бұрын
you can always use 2 or more addresses to store values and then join them together using code. For instance, if you want to store a 16-bit number, you write the HSBs (first part from the left) to address 1 and the LSBs to address 0. Then, when you want to get the data, you read both of them and paste them together accordingly. For instance: Data to be saved: 1100000000000001 Saved to address 1: 11000000 Saved to address 0: 00000001 To read it: variable = EEPROM.read(1)
@nardjestec5 жыл бұрын
Very clear thank you.
@birkhansonkan42367 жыл бұрын
what happens when you reach the address limit of 255?
@diyhub29867 жыл бұрын
im thinking the same thoughts too.
@GlowingSteam6 жыл бұрын
Not to mention its a quick and easy method to burn your write cycles at the push of a button. Also I'm confused as to the methodology behind using an int with only 1 or 0 when booleans exist
@SteveandBobkiller10000506 жыл бұрын
@@GlowingSteam booleans are very special and are stored as 1s and 0s anyways by the compiler, easier to just use an int with only 1 or 0
@SteveandBobkiller10000506 жыл бұрын
I could be wrong about this
@taranagnew4366 жыл бұрын
would i need to add EEPROM to a project if i'm building a LED matrix ( where the user changes the image every so often)
@masar-at6 жыл бұрын
it depends on the uC used and the size of your binary image/text
@siddhantchaudhary49465 жыл бұрын
Dae-ta is what it is
@maxpolaris996 жыл бұрын
Clear and to the point
@harikeshprajapati76625 жыл бұрын
how could you used the reset button to clear EEPROM
@chrisingram72775 жыл бұрын
In the void setup, he adds an EEPROM.write(0,0); command so when he runs the program for a second time without pushing the counter button, it resets to zero again. I had to think about that one too.
@br526859 ай бұрын
@@chrisingram7277 Could you explain this a bit more. I'm looking at the code, and not quite seeing *how* exactly this reset occurs.
@chrisingram72779 ай бұрын
@@br52685 In the void setup he sets first sets the int variable "counter" to the count value counter = EEPROM.read(0); then he resets the counter value in the eprom to 0 EEPROM.write(0,0); then he starts the void loop which only writes an old counter value to the eprom when the button gets pushed EEPROM.write(0, counter); //write counter to address 0 that only happens if the button gets pushed otherwise the EEPROM value stays at 0 Hope this helps, thanks for the question, sometime in the last 4 years I had forgotten there was an EEPROM in our Arduino's
@br526859 ай бұрын
@@chrisingram7277 Ahh that explains it---thx!
@Good-Enuff-Garage Жыл бұрын
so the UNO has EEPROM but the DUE does not !?!?!?
@ElectroMentor5 жыл бұрын
it was helpful thank for sharing !
@matrixdexter2706 жыл бұрын
can you use the i2c on an eeprom
@masar-at6 жыл бұрын
yes, many eeprom's support i2c protocol
@anshdayal88354 жыл бұрын
Your code is not working.
@thomaspatrick45646 жыл бұрын
Elephant in the room is the FCC
@Palamatar5 жыл бұрын
Why?
@mtalhakhalid16794 жыл бұрын
You can store your data in a perticular datatype like in char float String in arduino IDE why need eprom of arduino?
@vlektor3 жыл бұрын
if you add an highscore function and reset the arduino the highscore is gone so you have to put the highscore on the EEPROM
@Superspace87 жыл бұрын
Great video thanks so much
@learnthebasicchannel83946 жыл бұрын
how many RFID tag does atmega328p can have?
@HTG-xyz5 жыл бұрын
well explained..thanks
@shantosutradhar13654 жыл бұрын
very good, thanks
@james-barnett4 жыл бұрын
It's better practice to use a 555 timer to stop the bouncing of the button rather than writing it in the program, that way it can be used universally.
@vilziciuli70527 жыл бұрын
9 bit wil be writed.
@Melodyvibe20043 жыл бұрын
Sir I am going to innovate a project related to sensors , so is it possible for you to send me the required codes for all those sensors?....
@christgoodappiah2903 Жыл бұрын
I really enjoy your tutorials. Always on point. But I will advise that you take your time in talking. You speak so fast. Please take your time in explanation. Thank you.
@kevinjacob74644 жыл бұрын
Why doesnt he have so many views?? Goddamit
@Jalecko2 жыл бұрын
well that was easy
@mohitarora87546 жыл бұрын
Take a breath bro.... You are going fast. You are explaining to beginners not to professional.
@apriadizidan48592 жыл бұрын
This is Elon musk
@robertbryce76264 жыл бұрын
Could you possibly have talked any faster. Much came out as total gibberish.
@wolfgangboettcher31265 жыл бұрын
Bleib locker ,eepromm speicher kenne zu gut machen Kritik und nicht zu gebrauchen verliere nicht dein Talent