ds18b20 temperature acquisition

Program design of temperature value display of DS18B20 I Characteristics of DS1820 single line digital thermometer • unique single line interface requires only one port pin for communication • simple multipoint distribution applications • no external components required • power supply via data line • zero standby powe ...

Added by ev5unleash on Fri, 04 Mar 2022 00:47:51 +0200

STM32 learning from scratch - SPI reading and writing FLASH

STM32 learning from scratch @EnzoReventon SPI read / write FLASH Related links: Introduction to SPI physical layer and FLASH chip SPI protocol layer SPI features and architecture reference material: [wildfire EmbedFire] practical guide for STM32 Library Development -- Based on wildfire Decepticon development board [punctual atom] STM32F4 Dev ...

Added by Scip on Thu, 03 Mar 2022 22:48:05 +0200

Development Notes for embedded linux Driver

1, Mapping from linux physical address to virtual address linux cannot directly operate the physical address. If you need to operate the hardware, you need to convert the physical address into a virtual address first. Because linux enables MMU, you cannot directly operate the physical address. 1. What are the benefits of enabling MMU? (1) Make ...

Added by CashBuggers on Thu, 03 Mar 2022 05:28:51 +0200

Record 6 - stm32f411ceu6 the actual small-scale comprehensive application project

preface The previous learning is divided into several modular knowledge points. The learned knowledge needs to be combined for practice, and the comprehensive and flexible application ability of the learned MCU knowledge is more investigated. (the writing is relatively basic. If there is any error, please correct it) task requirement LE ...

Added by amreiff on Wed, 02 Mar 2022 14:13:12 +0200

Configuration and application of IOT hardware on OneNET platform

01 overview NB-IoT NB IOT (Narrow Band Internet of Things) is a narrowband Internet of things technology based on cell, which supports low-power devices to connect cellular data in low-power wide area Internet of things (LPWAN). LWM2M protocol The full name of LwM2M is lightweight machine to machine. It is a lightweight protocol formulate ...

Added by bastien on Tue, 01 Mar 2022 17:53:12 +0200

Memory management experiment

More exchanges, welcome tiktok, 81849645041 objective Understand internal memory and external memory, and realize the dynamic management of memory. principle Memory management refers to the technology of allocating and using computer memory resources when software is running. Its main purpose is how to allocate efficiently and quickly, and ...

Added by GKWelding on Mon, 28 Feb 2022 03:53:48 +0200

SD card reading and writing experiment

More exchanges, welcome tiktok, 81849645041 objective Familiar with the working principle of SD card and SDIO. Master the reading and writing of SD card. principle Most single chip microcomputer systems need large capacity storage devices to store data. At present, U disk, FLASH chip, SD card and so on are commonly used. They have their own ...

Added by Zoran_Dimov on Sun, 27 Feb 2022 14:48:24 +0200

STM32+CubeMX+Keil+HAL Library

  Catalog 1. Set up GPIO: 2. printf redirection 3. Log information format 4. Personalized Output 5. CubeMX+HAL Open Serial Interrupt 6. Open external interrupt 7. Clock Tree Basic Operations 8. Universal timer configuration 9. CubeMX Configuration Timer (1) Set the timer clock to 72M (2) Select internal clock (3) Configure timer ( ...

Added by sgbalsekar on Sat, 26 Feb 2022 19:21:01 +0200

STM32 LCD (ILI9341) simulates 8080 timing

LCD with 8080 timing There are four control lines of 8080: RD write enable, WR read enable, DC data / command and CS chip selection 8080 bus has many interfaces: 8 / 9 / 16 / 18 bit interface 8080 general timing Read timing LCD_CS = 0; //Film selection LCD_DC = 1; //Read data LCD_WR = 1; //No writing LCD_RD = 0; //Start readin ...

Added by Kazlaaz on Sat, 26 Feb 2022 12:59:07 +0200

EEPROM reading and writing experiment

More exchanges, welcome tiktok, 81849645041 target The slave device EEPROM can read and write data. principle EEPROM is a memory that does not lose data after power failure. It is often used to store some configuration information for loading when the system is powered on again. The most commonly used communication mode of EEPROM chip is I2 ...

Added by Japher on Sat, 26 Feb 2022 12:21:49 +0200