I found this tiny EEPROM from an old random board. Soldered it on copper board to use it as a through-hole component and to use on the breadboard The EEPROM is 24C02N. It uses i2C to communicate and is relatively easy to read/write. I used Arduino Nano for that. Some functions I wrote: EEPROM memoryContinue reading “I found this EEPROM”
Tag Archives: c++
Lämmämõõdusk
Description A device that measures the ambient temperature in the environment in which it is located. And displays it on the screen. Artistic description Plant-like structures. Display like blossom. Bottom woodblock aged with brushing with a wire brush and oxidation solution (steel wool + vingar). Animations When the number to display changes it plays shortContinue reading “Lämmämõõdusk”
C vs. C++: Bubble sort
I have identical bubble sort algorithm in C and C++. Same data and same computer. Experiment shows that C is twice as slow as C ++. In C it takes 124 processor clicks or 0.000124 sec. In C++ it takes 66 processor clicks or 0.000066 sec. C Bubble sort code: C++ Bubble sort code: https://github.com/taunoe/cpp-examples/tree/master/Sorting-algorithms/Bubble-sort