I am going to use VS2005 + C# to develop an application for Windows Mobile 5.0. I will install SQL CE on the phone and store the data on the phone. At night, I will do a synchronization and merge with...
Ladies and Gentlemen, I am now working on a temperature control product. This product uses a compressor to inject cold air/hot air into a sealed wall. The injection gas selection is controlled by only...
It is very simple to display patterns on the three-color E-Ink Gizmo. Using Adafruit's dedicated library, you can display the community's logo in a few minutes.First update the firmware of the develop...
I use the AT+CNMI=3,1 command, but when performing GPRS data transmission, the URC of the new SMS is sometimes received, and sometimes not. What is the reason? If the URC of the new SMS is not receive...
Setting bit 0 of ADCCON to 1 starts ADC conversion. During the conversion process, bit 0 will become 0. However, after I set it to 1, it has not started. I don't know what went wrong. Below I will pas...
Wang Xiaochuan, the "Wudaokou Goalkeeper", is going through a level that he has never gone through before. For example, Sogou's (NYSE: SOGO) financial report, artificial intelligence, and the futur...[Details]
In recent years, as energy consumption and environmental protection issues have attracted people's attention, my country's solar photovoltaic power generation industry has shown a rapid development...[Details]
In our common sense, the word technology often has two definitions. The first is the technology sealed in the laboratory. They are like flowers on the mountain top. Only a few people on the mountai...[Details]
1. Photovoltaic inverter installation process
1. Preparation before installation
Are the product accessories, installation tools and parts complete? Is the installation environmen...[Details]
In the development of artificial intelligence, talent reserve is undoubtedly an important part. Artificial intelligence should be a bottom-level technology that can be deeply embedded in any indust...[Details]
This small program is still the use of timer, which is relatively simple. The specific parts are noted in the comments, please refer to the comments. /*********************************************...[Details]
As photovoltaic power stations come into people's view, people are paying more and more attention to them. Recently, some netizens asked me how to match the inverter and components of photovoltaic ...[Details]
Using the WWDG of STM32F030, it is found that the MCU will not be reset under STOP, just like the sleep mode of STM8S. Paste the watchdog code: /******************************************************...[Details]
At the beginning, I used the stdlib library. Recently, I found that the cube library is more and more widely used, so I started to use the cube library to complete the ADC multi-channel acquisition e...[Details]
The storage media corresponding to the three boot modes of STM32 are built-in to the chip, they are: 1. User Flash = Flash built into the chip 2.SRAM = RAM area built into the chip, which is the m...[Details]
The first one is a DMA mode of multiple channel acquisition void ADC_DMA_Config(void) { ADC_InitTypeDef ADC_InitStructure; RCC_HSICmd(ENABLE); while (RCC_GetFlagStatus(RCC_FLAG_HSIRDY) == RESET); ...[Details]
When the program starts running, light A turns on for 5 seconds, then turns off, light B turns on for 5 seconds, light B turns off, light C turns on for 5 seconds, light C turns off, the program ends...[Details]
****************************************************************** 1. The operand is in register, R0--R7 2. Operands are in internal RAM 3. Operands are in external RAM But they are all similar. For ...[Details]
#include avr/io.h void Delay(unsigned int T) { unsigned int i,j; for (i=0;i T;i++) for (j=0;j 100;j++) asmvolatile ("nop"); //Assembly instruction, let the microcontroller run empty instruction...[Details]