Getting Started With STM32 and Nucleo Part 2: How to Use I2C to Read Temperature Sensor TMP102

  Рет қаралды 258,061

DigiKey

DigiKey

4 жыл бұрын

Let’s take our STM32 to the next level and communicate with a sensor. We’ll use the I2C protocol to send and receive messages with a TI TMP102.
In this video, we’ll show you how to use the STM32CubeIDE to create a new project and write a few simple STM32 HAL commands to transmit messages across the I2C bus. We’ll read temperature data from a TMP102 sensor and then calculate a readable temperature in Celsius from that information. Finally, we’ll use the STM32’s UART peripheral to transmit that temperature data back to our computer to read on a serial console.
The STM32 series is based on the ARM Cortex architectures. Specifically, we’ll be looking at the STM32 Arm Cortex-M microcontrollers. To make life easier, we’ll be using STMicroelectronics’ official Nucleo development boards (the Nucleo-L476RG in particular).
WRITTEN TUTORIAL
If you would like to see the steps performed in this video in written form, please see the tutorial here: www.digikey.com/en/maker/proj...
Wishlist (shared cart): www.digikey.com/short/p59jrr
ADDITIONAL RESOURCES
Related Projects www.digikey.com/maker/search-...
Download STM32CubeIDE: www.st.com/en/development-too...
STM32 HAL documentation (click on family from graphic and then Resources tab) : www.st.com/en/embedded-softwa...
SparkFun I2C Tutorial: learn.sparkfun.com/tutorials/...
Maker.io: www.digikey.com/en/maker
Digi-Key’s Blog - TheCircuit: www.digikey.com/en/blog
Connect with Digi-Key on Facebook: / digikey.electronics
And follow us on Twitter: / digikey

Пікірлер: 135
@shambles9
@shambles9 Жыл бұрын
These videos are the gift that keeps giving. I used this very video over a year ago to help me get up to speed and it was invaluable today as well. Thanks Shawn!! printf and its derivatives are capable of printing floating point numbers by the way, no need to juggle the number and print the integer and fractional parts separately.
@igabo95
@igabo95 3 жыл бұрын
Man your explanations are perfect. It's just the right rythme I need, thank you !
@gustavoghedim3047
@gustavoghedim3047 4 жыл бұрын
The best explanation I've found so far, one video about SPI and CAN communication would be amazing!
@caffeinatedinsanity2324
@caffeinatedinsanity2324 3 жыл бұрын
CAN deserves some explanation indeed. As for SPI, I always regarded it as one of the simplest protocols out there, more than UART, since there's almost no device link data structuring (like UART with start, parity or stop bits). The data structure is probably only dictated by the type of device you want to communicate with.
@shelbypereira
@shelbypereira Жыл бұрын
these videos are brilliant, so clear , to the point and highlights all the important stuff including error handling... and I love the bow tie!
@dnyaneshvarsalve
@dnyaneshvarsalve Жыл бұрын
Your explanation to every topic is very good and easy to understand. Thank you
@DownhillAllTheWay
@DownhillAllTheWay 4 жыл бұрын
I'd really like to see your simple, concise explanation for reading and writing to an SD card with SPI. That would also solve other stuff I want to do with SPI.
@kumarghz
@kumarghz 4 жыл бұрын
Amazing explanation about I2C. Please make one for SPI
@jamesdavid5224
@jamesdavid5224 3 жыл бұрын
Bro, these tutorials as a refresher from my final year course has been a life saver! I can't thank you enough!
@Everflamen
@Everflamen 2 жыл бұрын
What did you study? :D
@jamesdavid5224
@jamesdavid5224 2 жыл бұрын
@@Everflamen Electrical Engineering
@moinshaikh6684
@moinshaikh6684 3 жыл бұрын
Very very nice explaination dear! You're the Reason I understand the programming of stm for the first time.
@damny0utoobe
@damny0utoobe 4 жыл бұрын
Very nice to see digikey getting into the STM32 tutorial game.
@ValiRossi
@ValiRossi Жыл бұрын
I just bought 3 STM32 Disco boards from Digikey. These videos are great. Thanks Digikey!
@SKPang
@SKPang 4 жыл бұрын
Great tutorial. Please make more.
@rubikon7648
@rubikon7648 3 жыл бұрын
One of the best explanations, thank you
@filmweaver2013
@filmweaver2013 4 ай бұрын
Excellent explanation! Even as a mechanical engineer with no previous formal knowledge on this, I am able to understand! Now I understand how "easy" arduino makes all this, for beginners
@amulshinde6102
@amulshinde6102 3 жыл бұрын
Thank you very much, this video helped me before breaking my neck. Saved my time.
@nogaavraham7173
@nogaavraham7173 2 жыл бұрын
As always, great tutorial! Very helpful. Thanks alot!👍
@David-yp9oz
@David-yp9oz 4 жыл бұрын
Awesome vid, can you make one for SPI as well?
@volik2103
@volik2103 4 жыл бұрын
Ethernet tutorial for sure will be awesome!
@thomaseslier5332
@thomaseslier5332 3 жыл бұрын
Amazing tutorial! Thank you very much
@rahaz7073
@rahaz7073 2 жыл бұрын
Best teacher ever---Thanks
@DidiCechet
@DidiCechet 3 жыл бұрын
Very good explanation! Thanks a lot for it 👏
@paulg.3067
@paulg.3067 3 жыл бұрын
Very informative and condensed video :)
@michlin19710825
@michlin19710825 4 жыл бұрын
Learned a lot thanks. Would be very helpful if you could add a similar tutorial video on SPI.
@Hirnlappen
@Hirnlappen 4 жыл бұрын
Incredibly sharp and concise tutorial!
@ramimehyar481
@ramimehyar481 2 жыл бұрын
Can you please explain to me how we sent the 8th bit to determine if we are writing or reading?
@Hirnlappen
@Hirnlappen 2 жыл бұрын
@@ramimehyar481 at 12:20, you can see that there are two different functions for either writing to, or reading data from the I2C device. They will set the 8th bit accordingly.
@ramimehyar481
@ramimehyar481 2 жыл бұрын
@@Hirnlappen thank you, i have assumed the same, so that means that this w/r bit is a standard i2c protocol to be at that location?
@Hirnlappen
@Hirnlappen 2 жыл бұрын
@@ramimehyar481 Indeed. But just to be sure, I also looked it up again. You find it on the Wikipedia page as well as in the I2C standard, which is very well written (it's linked from the Wiki page).
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
damn the smile at the end of every explanation is so awesome
@ramimehyar481
@ramimehyar481 2 жыл бұрын
Please one similar for SPI, great video!!!
@adaminsanoff
@adaminsanoff 3 жыл бұрын
I cannot thank you enough!
@piratesofbytes
@piratesofbytes 4 жыл бұрын
WOW Super Tutorial !!!
@a.s.8984
@a.s.8984 4 жыл бұрын
Hello Shawn, it´s the best tutorial I have ever seen. Thank You. I only have trouble with displaying the symbols on puTTY. In the device manager my board STM32L100 is not listed as Com Port, but as an USB-Device. Do I need a special driver?
@Graham1904
@Graham1904 4 жыл бұрын
Always a pleasure to watch these tutorials :) Keep them coming.....
@nereamonrio7561
@nereamonrio7561 Жыл бұрын
Are u an unit vector? Because you give my life direction
@Metroid1890
@Metroid1890 3 жыл бұрын
It's just the 2nd video and I already want to buy a Nucleo
@oswevega2939
@oswevega2939 Жыл бұрын
excellent. very useful
@sachinshet4569
@sachinshet4569 4 жыл бұрын
Which tool need to use simulate STM nucleo board and code.
@electronichome1153
@electronichome1153 Жыл бұрын
Many thanks Shawn! I'm really motivated to finish this course, but already in this second lesson I'm running into the complexity of STM32 programming. It's not like the standard C to me, especially with those crazy HAL functions. Also, your programs are quite elegant and professional, which means in plain language that they are not friendly for C beginners, or at least not for me. But I don't give up and keep going.
@oswevega2939
@oswevega2939 Жыл бұрын
hello ! i felt the same trying some code in RTOS for ESP8266 but guess what , nowadays everything is like this , and most of sw is copy paste.... so our good old days are over.... let´s get used to very high level of abstraction to use these tools unfortunately....
@fernandoi8958
@fernandoi8958 2 жыл бұрын
I would like to complement this amazing tutorial by pointing out a few issues: 1) the 2s complement comment should state that you are actually extending the 2s complement encoding from 12 bits to 16 bits; 2) the float value is converted to unsigned int in the printf, so negative values will not be displayed correctly.
@JasperHatilima
@JasperHatilima Жыл бұрын
I still confused with that part of the code. I was expecting that the a value that is in 2s compliment would require several steps. The steps I would expect would be: checking if most significant bit is a 1. Then if true, invert all bits and add a one at lsb location. But here he just does logic OR with 0xF000. I am confused...kindly explain.
@fernandoi8958
@fernandoi8958 Жыл бұрын
@@JasperHatilima 12:56 the temp sensor has only 12 bits, but val is a 16 bit signed integer (int16_t). Then, he checks if the most significant bit of the 12 bit temperature sensor reading is active by testing (val > 0x7FF). When he does the or-ing (val |= 0xF000) he is just extending the 16 bit variable with leading ones so that the whole 16 bit variable accurately represents a 2-complement value
@onszerai755
@onszerai755 2 жыл бұрын
Thanks a bunch for the great explanation, i wonder if you have an example of SCD30 CO2 sensor or if y can guide me because i didn't get good results so please answer me asap! thanks
@danndemetre6643
@danndemetre6643 2 жыл бұрын
Great tutorial, used this in part to setup an ADS1115 connected to a LM60 on the BluePill. Just one thing though: sprintf((char*)buf, "%u.%02u C ", ((unsigned int)temp_c / 100), ((unsigned int)temp_c % 100)); } This will fix chopping of leading zeros for the decimal value. (ex: 20.09 = 20.09 and not 20.9)
@1over137
@1over137 Жыл бұрын
Thanks. I ran into a curious issues. After following this on a Nucleo-64 I added an OLED 128x64 1306 to the I2C bus. The debugger/programmer couldn't reach the MCU. The MCU was running, but hthe STLNK couldn't reset it. I reviewed the wiring and found by simply connecting the OLED to the 3,3V pin was enough to cause the programmer to fail. It makes no sense. I check the OLED on an ESP32 and it worked perfectly. It's almost as if the 3.3V regulator is overloaded with the chip+tmp102+oled.
@flexplayz6551
@flexplayz6551 2 жыл бұрын
This is amaizing.
@fenderrexfender
@fenderrexfender 4 жыл бұрын
so some of my USB ports don't put out enough current for this board. its a bit more hungry than some boards iv played with in the past. the board would disconnect at stlink updates
@Bob-zg2zf
@Bob-zg2zf 2 жыл бұрын
excellent!
@pawelp.340
@pawelp.340 3 жыл бұрын
Do I have to end debug session in order to receive anything from COM port? I'm not able to get any data via USB while in debug session.
@kia2065
@kia2065 3 жыл бұрын
How would this work with a gyroscope? That's what I'm trying to figure out.
@chakrarokaya3952
@chakrarokaya3952 2 ай бұрын
Nice explanation. A per my understanding we are reading two bytes [buf[0] and buf[1] from the temperature sensor. could any one please explain for the combining bytes buf[0] 4. Why left shit and right shift by 4?. Thanks
@ramimehyar481
@ramimehyar481 2 жыл бұрын
How does the mastertransmit and masterreceive toggle the last bit 1 or 0 to determine if we are writing or reading? I do not see how Hal_ could know this from the datasheet of the sensor! Otherwise, how then are we sending this last bit accordingly?
@tngdwn8350
@tngdwn8350 2 жыл бұрын
Can somebody explain me why it's necessary to cast buf to a char pointer when using strcpy?
@ABS_guy
@ABS_guy 3 жыл бұрын
Could you make a tutorial for updating the virtual COM ports for Putty -> STM serial connections? Windows 10 has made the COM ports obsolete and its been impossible to debug. Tried 6 tutorials to fix the issue for COM ports and nothing works.
@gautambaskaran1907
@gautambaskaran1907 3 ай бұрын
I guess there is a confusion when performing 2s complement. I dont think this will work for negative temperature. Please correct me if wrong
@Graham1904
@Graham1904 4 жыл бұрын
Great video, well explained. I am a newbie to STM32.... What is HAL?
@David-yp9oz
@David-yp9oz 4 жыл бұрын
Hardware Abstraction Layer www.datarespons.com/pros-cons-using-stm32cubemx-code-generation-tool-insead-manually-writing-drivers-arm-cortex-m-microcontroller/
@LinaLin-xq8pd
@LinaLin-xq8pd 4 жыл бұрын
Hardware Abstraction Level - a layer of programming that allows a computer operating system to interact with a hardware device at a general or abstract level rather than at a detailed hardware level
@naasikhendricks1501
@naasikhendricks1501 4 жыл бұрын
I would say Shaun's coding style is good.
@riannata8309
@riannata8309 2 жыл бұрын
hi friend, may you make tutorial in INA219 Current sensor please.
@HellesMammuthBS
@HellesMammuthBS 3 жыл бұрын
Super nice videos!!! Only thing that confuses me is your intergalactic talking speed ;)
@tinu5779
@tinu5779 2 жыл бұрын
now after finishing this code it would have been interesting to add another device, maybe an SPI device and show how to do that without losing my own code.
@abdulwasey1814
@abdulwasey1814 3 жыл бұрын
u r legend
@LiNa-ll3gz
@LiNa-ll3gz Жыл бұрын
Is there any tutorial on I2C low level driver?
@PrasannaRoutray97
@PrasannaRoutray97 2 жыл бұрын
What about device like AD7147 that can be used to connect to 13 sensors? How to read using STM32? Example?
@berktopbas1496
@berktopbas1496 3 жыл бұрын
Why didn't we change last bit(R/W bit) of the TMP102 address from 0 to 1 in HAL_I2C_Master_Receive function in order to read data from the slave, as you mentioned in 09:20? I think we could easily do that by TMP102_ADDR | 0x01.
@mozhang2724
@mozhang2724 Жыл бұрын
I have the same question
@_sk_beatz_6051
@_sk_beatz_6051 Жыл бұрын
@@mozhang2724 0x01 is the adress of temperature register where in the hal i2c master transmit function it will take care of R/W bit if u using transmit function means R/W bit set to 0 and if u using Recive then it set to R/W bit set to 1
@_sk_beatz_6051
@_sk_beatz_6051 Жыл бұрын
@@mozhang2724 and 0x01 is not R/W bit it is Temperature register adress
@donprefontaine3237
@donprefontaine3237 3 жыл бұрын
Superb videos (I only watched the first two) but product environment is extremely complex. The vendor needs to simplify the dev environment for new users or their only customers will be experienced engineers: that will not allow the vendor to increase sales. So... consider a tiered learning level from simple to moderate to complex. As a course developer/instructor for 23 years before retirement, I have found this to be a successful approach.
@user-ww2lc1yo9c
@user-ww2lc1yo9c Жыл бұрын
what could prevent UART from transmitting that we need to make use of HAL_MAX_DELAY?
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
the diagram & schemetic is not there anymore for the nucleo-64 boards datasheet :( 2:11
@bhargavamgoth3286
@bhargavamgoth3286 10 ай бұрын
I am using stm21f722ZET6U Nucleo board, I tried to program for simple LED Toggle and I selected the nucleo board and configured RCC and SYS and Selected in built LED in as output but when i try to generate the code for it its not generating the code
@pseudounknow5559
@pseudounknow5559 3 жыл бұрын
Why the address for reading/writing stay the same ? We should do something like this "TMP102_ADDR | 0x01" in order to add 1 ?
@ramimehyar481
@ramimehyar481 2 жыл бұрын
Did you get an answer for this obvious question? I asked it again, i want to know the same! I guess the hal_ transmit and receive parameter does that, but i want to know how
@erdoganseref5425
@erdoganseref5425 2 жыл бұрын
I tried to do the same with the MPU6000 but it didn't work. I always Error Tx.
@axelcastrejon6730
@axelcastrejon6730 8 ай бұрын
How did your code work when you had no pull up resistor? You didn't even set the internal one
@havva61
@havva61 Жыл бұрын
I did same things on anoteher card of stm32 from stm32F103 series but I got something wrong messages like ''huart2' undeclared (first use in this function)'. How can get rid of this problem? Do you have any idea?
@jackgreer8023
@jackgreer8023 2 жыл бұрын
Is there a reason why it's preferable to declare TMP102_ADDR and REG_TEMP as private variables instead of macros at around 10:40? Thanks!
@keistvin6263
@keistvin6263 Жыл бұрын
so he can declare it as uint8_t and shift it
@edohachamo647
@edohachamo647 4 жыл бұрын
can you please share the steps performed in this video in written form? i couldn't find it at the site
@digikey
@digikey 4 жыл бұрын
Hello, Our Maker site is currently down for maintenance. Please check back in a couple of days. Sorry for the inconvenience.
@komeleduc
@komeleduc 4 ай бұрын
i tried to do this on my iks01a3 and everything looked fine until i only got the first 8 bits, the second 8 bits stayed the same as the first 8 bits (yes i print the combined 2-byte hex value). anyone like to discuss?
@stm32user
@stm32user 4 жыл бұрын
Hey man. Why you left shifted ?.! One time ?.
@snehamadhuri990
@snehamadhuri990 2 жыл бұрын
your explanations are good but I've tried for HTS221 sensor and i'm getting always tx error even i changed the slave address. Can you please do a video on MEMS sensor (IKS01A2).
@komeleduc
@komeleduc 4 ай бұрын
i think your address for temp sensor is different from 0x48 shown above. im doing the same for my stts751 on iks01a3
@user-ww2lc1yo9c
@user-ww2lc1yo9c Жыл бұрын
where are the hi2c1 and huart2 declared?
@yosefgreeves8379
@yosefgreeves8379 2 жыл бұрын
¿Can run in an ESP32 board ?
@chrisblain7065
@chrisblain7065 Ай бұрын
At 11:48, he does something to show the parameters for HAL_Status... I'm assuming that it's something from a right click menu, but I can't figure out what it is...
@chrisblain7065
@chrisblain7065 Ай бұрын
It's F2... nevermind!
@adaminsanoff
@adaminsanoff 3 жыл бұрын
Use *dmesg | grep tty* command in Linux to find the serial port.
@sscorp_learning7680
@sscorp_learning7680 Жыл бұрын
I am getting "Error Tx". The UART worked with "Hello!".
@Mar-md8rc
@Mar-md8rc Жыл бұрын
Hello, me too.
@Mar-md8rc
@Mar-md8rc Жыл бұрын
Hey for me it works now. I got obly a smd chip of a temperature sensor. I pulled the data pins with 10kohms to vcc and now it works.
@rftech1608
@rftech1608 Жыл бұрын
that was a lot to take in
@itsme.6863
@itsme.6863 2 жыл бұрын
Why my browser insists in showing me subtitle for this video in Korean language???
@KennySanzYT
@KennySanzYT Жыл бұрын
With NUCLEO-F303RE I keep getting only ErrorTX, i'm sure my pins are in the right position and the code is correct, anyone know what the issue could be?
@Mar-md8rc
@Mar-md8rc Жыл бұрын
Me too :(
@davy822
@davy822 4 жыл бұрын
I don't understand how you did the 2's complement
@imcnx1563
@imcnx1563 4 жыл бұрын
Dave you add 1 to your binary number then flip all the numbers to 1 if they were 0 and 0 if they were 1. i.g. Your binary number is 1001011 so after adding 1 you’ll get 1001100 and finally you’ll have 0110011
@BobBeatski71
@BobBeatski71 4 жыл бұрын
Dave is right. Line 129 sign extends the float value to correctly ensure the number is negative, but the additional code is missing. Temps
@ShawnHymel
@ShawnHymel 4 жыл бұрын
val is an int16_t, so what we're doing is looking to see if the first bit of our 12-bit number is 1. If it is, we pad 0xF to the front of the 12-bit number (making it a 16-bit number that starts with b1111). Because it's a signed int16_t, the 2's complement will be automatically performed for us, resulting in the correct negative number. Hope that helps!
@BobBeatski71
@BobBeatski71 4 жыл бұрын
Aaahhh. You C programmers are spoilt. ;) I'm an assembly guy and we (generally) have to do it the long handed method: ori #$F000, reg1 not reg1 addi #1, reg1
@ajayrajan8882
@ajayrajan8882 3 жыл бұрын
@@BobBeatski71 minimizing a long task with some abstraction doesn't mean they are spoilt :)
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
mine keeps giving me error :/
@ajeethsuryash5123
@ajeethsuryash5123 4 жыл бұрын
This guy is a compiler by himself... He doesn't need any IDE
@soranfatah1033
@soranfatah1033 Жыл бұрын
you spoken very speed
@yanhuiyuan5686
@yanhuiyuan5686 4 жыл бұрын
very good tut. can u share the code?
@yanhuiyuan5686
@yanhuiyuan5686 4 жыл бұрын
found it on digikey website, thx
@edohachamo647
@edohachamo647 4 жыл бұрын
@@yanhuiyuan5686 where did you find the code? can you share the link, i couldn't find it in the site
@edohachamo647
@edohachamo647 4 жыл бұрын
@@yanhuiyuan5686 hi, can you share the link? i couldnt find it in the site
@yanhuiyuan5686
@yanhuiyuan5686 4 жыл бұрын
www.digikey.com/en/maker/projects/getting-started-with-stm32-i2c-example/ba8c2bfef2024654b5dd10012425fa23
@realdragon
@realdragon 4 жыл бұрын
I don't like it, it jumped from hello world to operating bytes
@nsashan
@nsashan Жыл бұрын
korean subtitles?
@AnhTuNguyenanhtunguyen
@AnhTuNguyenanhtunguyen 4 жыл бұрын
Hi, firstly thank you very much for the useful video. But I still got a question. In my case, the result looks something like error tx or rx between the actual temperature. Here is the picture imgur.com/djMx7oE
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
you are not alone
@AnhTuNguyenanhtunguyen
@AnhTuNguyenanhtunguyen 3 жыл бұрын
@@abutaymiyyahlectures did you find solution?
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
@@AnhTuNguyenanhtunguyen actually, yes i did
@abutaymiyyahlectures
@abutaymiyyahlectures 3 жыл бұрын
@@AnhTuNguyenanhtunguyen the problem for me was, the pins, u know how there are 2 rows of pins for the nucleo right?, i addidentally put the wire on the first row instead of the second row. Its my first time making this mistake. How i figured out my mistake is by making use of the other i2c pins, there are 4 total pins for i2c1, u can use either one of the pairs, for me the first one didnt work because of the pin mistake, so i decideded to use the second pair, then it worked and i found my mistake, hope this helps, u can try making use of i2c2 as well if u have
@tomfranky1744
@tomfranky1744 2 жыл бұрын
Too complicated for "getting started part 2"!
@matovupaul4942
@matovupaul4942 2 жыл бұрын
You too fast and the quality of the videos is not good. Hope you could do it like Paul McWhorter in his Arduino tutorials it would be better
@wesleydou337
@wesleydou337 9 ай бұрын
N'est video ever!
@wesleydou337
@wesleydou337 9 ай бұрын
Best
@tm-uz7md
@tm-uz7md 2 жыл бұрын
Ridiculous complexity. Just use an Arduino, the libraries do 95% of it for you.
@riannata8309
@riannata8309 2 жыл бұрын
hi friend, may you make tutorial in INA219 Current sensor please.
@riannata8309
@riannata8309 2 жыл бұрын
hi friend, may you make tutorial in INA219 Current sensor please.
Khóa ly biệt
01:00
Đào Nguyễn Ánh - Hữu Hưng
Рет қаралды 20 МЛН
Универ. 10 лет спустя - ВСЕ СЕРИИ ПОДРЯД
9:04:59
Комедии 2023
Рет қаралды 2,8 МЛН
How I2C Communication Works and How To Use It with Arduino
9:57
How To Mechatronics
Рет қаралды 1,5 МЛН
TSLOTS Fastener Options
2:06
TSLOTS by Bonnell Aluminum
Рет қаралды 137 М.
PROTOCOLS: UART - I2C - SPI - Serial communications #001
11:58
Electronoobs
Рет қаралды 1,4 МЛН
Using I2C for any device on STM32 with HAL | VIDEO 26
37:51
Matej Blagšič
Рет қаралды 74 М.
STM32 Guide #2: Registers + HAL (Blink example)
30:02
Mitch Davis
Рет қаралды 184 М.
Installing the STM32 USB Bootloader, Easily! [SEE DESCRIPTION]
8:02
Caleb Marting
Рет қаралды 260 М.
Cadiz smart lock official account unlocks the aesthetics of returning home
0:30
Samsung S24 Ultra professional shooting kit #shorts
0:12
Photographer Army
Рет қаралды 32 МЛН