This video is underrated. I understand, You have worked really hard to get to core of operation. The libraries of ArduinoCode are memory intensive and your video really helps to achieve some goals to create own graphics without using libraries
I think we need waay more of these kind of videos....my arduino pro mini couldn't handle any proper library I found, now i can put exactly as much in it as I need.
All I can say is you are a genius! I have no idea how you as to do this. I've been looking over the datasheet for 3 days non stop and have barely understood the i2c. Until know I didn't even understand why I had to send 0x80 or 0x40 but now I do. Thank you!
Hey great video. Figured some stuff out with no experience wanted more explantions and informations other than me just copy pasting from example code until i got it working. This video helped. thanks!
Thank you! This was exactly waht I was looking for...I spent a whole weekend trying to make sense of others libraries and the data sheet without success. Tehn you in 20 minutes gave answers to all of my questions, thank you.
Sir can you make a video to interface c2000 microcontroller f28379d ,interfacing it with c2000 microcontroller blockset in simulink and using i2c blockset from it
@ElectroCreativity I know. It turns out that I needed to restart Visual Studio Code and it started working. Your algorithm works perfectly, even using a different I2C library
I have a question, i've been trying to follow your steps, but when i write data to DATA_REG only 4 of the pixels change, and the way they change do not relate to the binary value, what can i do in this case, btw im using a 128x32 oled and all previous steps are the same, but when it comes to writing registers i get this behavior, thanks
Hi Axel, For 128x32 display width remain same with respect to 128x64 display that is 128 pixel . But hight become half that is 32. So vertical 64 pixels are down sampled to 32. So if you write 01010101 then only 1's will be displayed 0's will will be discarded. Inshort, for displaying vertical 64 pixels on 32 pixels, only odd number pixels are taken from 64 to adjust it in 32 pixels.
Thanks a lot bro, i have a doubt, in the datasheet there is no such value 80h and 40h for Data register and Command register, then where did you got these values???
Right! I swear people make datasheets as confusing as possible. I saw some code that need to send 80h but when I checked the data sheet, there was no mention of 80h
OK so I think I understand what is creating that 40h and 80h. When you want to write to the command register, you need to have that CO pin high and the D/W pin low. This is then followed by 6 0s crating 1000 0000 which is 80 in hex. This is the same for 40h where that CO pin needs to be low and the D/W pin needs to be high to write to the data register. Again followed by the 6 0s creating the 0100 0000 which is 40 in hex. The way they explain in the datasheet is the stupidesr and most confusing way. Ven explaining what the CO and D/W actually do. It's so annoying
jis din arduino par kaam chhor kar direct microcontroller paer programe karna sikh jaoge zindgi me bahut kuchh pa loge ,arduino par sab bana banaya program milta hai download karo aur chalao lekin gyan kuchh nahi hota.
धन्यवाद। मैं आपके कहने से बिल्कुल सहमत हूं। हमारे ही चैनल पर ARM based micro-controller को कैसे सोल्डर और प्रोग्राम करना है उसपर भी tutorial है। बाकी इन OLED tutorials की बात किई जाए तो, मुझे इसमें बस OLED पर फोकस करना था, जो खुद समझने को कठिन है इसलिए arduino को चुना, नही तो सेम चीज stm32 या Tiva-c पर भी किई जा सकती है। ऐसेही आप अपनी प्रतिक्रिया देते रहिये....धन्यवाद🙂
This video is underrated. I understand, You have worked really hard to get to core of operation. The libraries of ArduinoCode are memory intensive and your video really helps to achieve some goals to create own graphics without using libraries
Thanks😊
Yeah i agree with Harry
agree with krish
I think we need waay more of these kind of videos....my arduino pro mini couldn't handle any proper library I found, now i can put exactly as much in it as I need.
All I can say is you are a genius! I have no idea how you as to do this. I've been looking over the datasheet for 3 days non stop and have barely understood the i2c. Until know I didn't even understand why I had to send 0x80 or 0x40 but now I do. Thank you!
Thanks 😄
Thanks! Finally someone showing the actual grid on the OLED. Nice work!
Welcome 😊
khupch chan ani masta explanation ahe and last la output je show kela underrated but appreciated
@@BhaveshTavte धन्यवाद😊
Hey great video. Figured some stuff out with no experience wanted more explantions and informations other than me just copy pasting from example code until i got it working. This video helped. thanks!
Thank you for your kind word. I am glad that the video helped you😄
By Far the best video on the interntet explaining how to control an OLED. Thank You making more!!!!
Thanks😊
Thank you! This was exactly waht I was looking for...I spent a whole weekend trying to make sense of others libraries and the data sheet without success. Tehn you in 20 minutes gave answers to all of my questions, thank you.
Excellent and clear tutorial. Thank you very much for helping me understand the I2C protocol for OLED!
Thanks a lot, I finally understood how this controller works!
Thanks alot bro. It shows your hardwork and passion. Keep making such informative videos which sum the data sheet.
Thanks🙂
Amazing video. Was looking for something like this for like 5 years or so😅
Thank u
Thanks man.. Its really helps to understand what happening underneath..
Where to buy 5inch x 2 inch display?
Excellent tutorial. You are really doing a great job. Thank you ..
i was searching for this video
thanku i want to build my oled library
Good video, there is no much material without the libraries
Sir can you make a video to interface c2000 microcontroller f28379d ,interfacing it with c2000 microcontroller blockset in simulink and using i2c blockset from it
This is made just to get familiar with the sequence of commands that need to be sent to the OLED. Follow the same sequence of commands in MATLAB.
Well explained verry usefull,
Glad it was helpful!
Super Job......Thank You Very Much....
Welcome 😊
Hello. This doesn't work with HiFive Rev B board using freedom metal's implementation of i2c
You can understand the algorithm and implement it in the respective board. You can't use this code as it is for any other board
@ElectroCreativity I know. It turns out that I needed to restart Visual Studio Code and it started working. Your algorithm works perfectly, even using a different I2C library
Glad to hear that😄
Top man!
🤙
Great video thank you brother
Fantastic nice cool man
100%
I have a question, i've been trying to follow your steps, but when i write data to DATA_REG only 4 of the pixels change, and the way they change do not relate to the binary value, what can i do in this case, btw im using a 128x32 oled and all previous steps are the same, but when it comes to writing registers i get this behavior, thanks
Hi Axel,
For 128x32 display width remain same with respect to 128x64 display that is 128 pixel . But hight become half that is 32. So vertical 64 pixels are down sampled to 32. So if you write 01010101 then only 1's will be displayed 0's will will be discarded. Inshort, for displaying vertical 64 pixels on 32 pixels, only odd number pixels are taken from 64 to adjust it in 32 pixels.
Thanks a lot bro, i have a doubt, in the datasheet there is no such value 80h and 40h for Data register and Command register, then where did you got these values???
Right! I swear people make datasheets as confusing as possible. I saw some code that need to send 80h but when I checked the data sheet, there was no mention of 80h
OK so I think I understand what is creating that 40h and 80h. When you want to write to the command register, you need to have that CO pin high and the D/W pin low. This is then followed by 6 0s crating 1000 0000 which is 80 in hex. This is the same for 40h where that CO pin needs to be low and the D/W pin needs to be high to write to the data register. Again followed by the 6 0s creating the 0100 0000 which is 40 in hex. The way they explain in the datasheet is the stupidesr and most confusing way. Ven explaining what the CO and D/W actually do. It's so annoying
Very helpful!
SPI??? 😊
No....i2c
Shegao se ho aap
Shevgaon, Ahmednagar
It is working
Jay Gajanan 🙏🙏🙏🙏
Thnx 😖😖😖
What's the nonsense in the subtitles?
Thanks for bringing this to my attention....will change it soon
jis din arduino par kaam chhor kar direct microcontroller paer programe karna sikh jaoge zindgi me bahut kuchh pa loge ,arduino par sab bana banaya program milta hai download karo aur chalao lekin gyan kuchh nahi hota.
धन्यवाद। मैं आपके कहने से बिल्कुल सहमत हूं। हमारे ही चैनल पर ARM based micro-controller को कैसे सोल्डर और प्रोग्राम करना है उसपर भी tutorial है। बाकी इन OLED tutorials की बात किई जाए तो, मुझे इसमें बस OLED पर फोकस करना था, जो खुद समझने को कठिन है इसलिए arduino को चुना, नही तो सेम चीज stm32 या Tiva-c पर भी किई जा सकती है। ऐसेही आप अपनी प्रतिक्रिया देते रहिये....धन्यवाद🙂
English please ?
Sorry, I am am speaking in English only but in indian accent 😅
Great information, unfortunately I can't understand anything between your horrible English and poor microphone setup.
Thanks for the feedback.....From next time I will definitely take care of the audio...