ulv108

A small mobile phone based on the Taishan School

 
Overview
Following the bootcamp was my first step into Linux. Through this project, I learned the basic Linux framework, development environment setup, commonly used Linux commands, simple driver debugging, device tree concepts, and even drew PCB layouts and debugged driver code, gaining a preliminary framework for debugging a product. This bootcamp was based on the Taishanpai small mobile phone.
PDF_A Small Mobile Phone Based on the Taishan School.zip
Altium - A small mobile phone based on the Taishan School.zip
PADS_A small mobile phone based on the Taishan School.zip
BOM_Based on Taishanpa's Small Mobile Phone.xlsx
93138
Voltage and current CC meter
The newcomer training camp primarily utilizes LCSC development boards and example voltage and current meters for measurement.
The training camp focused on learning,
familiarizing students with the development board's schematic and PCB
layout. Students followed experienced instructors to design voltage and current meters based on the schematics
. This time, the official documentation didn't provide video tutorials for beginners, which frankly increased the difficulty significantly.
With just a schematic, you can't determine the component models. Although the instructors explained the functions of each component, for beginners, identifying the correct component among so many specifications is indeed difficult.
For example, it's hard to identify which component to use for a banana-shaped connector. Another example
is the voltage reference chip, whose schematic appearance differs from the model number provided in the BOM.
There's also the difference between silkscreen and netlabels, all of which require learning for beginners.

I won't go into detail about the software; as a beginner, my abilities are limited. I simply burned the experimental sample.
Finally, here's a screenshot to demonstrate.
Light up the video.mp4
PDF_Voltage and Current (CC) Meter.zip
Altium_Voltage and Current (CC) Meter.zip
PADS_Voltage and Current CC Meter.zip
BOM_Voltage and Current CC Meter.xlsx
93139
SCT2450 step-down module
A surface-mount step-down module designed using the SCT2450STER chip, used in smart car racing.
Buck module package library.zip
PDF_SCT2450 step-down module.zip
Altium_SCT2450 step-down module.zip
PADS_SCT2450 step-down module.zip
BOM_SCT2450 step-down module.xlsx
93140
Voltmeter and Ammeter Based on LCSC Development Board
Voltmeter and Ammeter Training Camp
The actual product is shown below. It is powered by 12V, with three 4mm banana plug sockets for voltage, common ground, and current measurement probe terminals, respectively. Two three-digit digital meters display the current and voltage measurements on the left and right, respectively, in A and V units. The core development board uses the CW32F030 microcontroller, which has a built-in high-precision ADC, thus serving as a voltage and current measurement channel.
The casing for the voltage and current meters is also designed, as shown below:
Voltage measurement demonstration.mp4
PDF_Voltmeter and Ammeter Based on LCSC Development Board.zip
Altium_Voltage Meter and Current Meter Based on LCSC Development Board.zip
PADS_Voltage Meter and Current Meter Based on LCSC Development Board.zip
BOM_Voltage Meter and Current Meter Based on LCSC Development Board.xlsx
93142
Passive buzzer (low-level trigger)
Passive buzzer module
No need to buy a passive buzzer module, you can make one yourself.
PDF_Passive Buzzer (Low-Level Triggered).zip
Altium Passive Buzzer (Low-Level Triggered).zip
PADS_Passive Buzzer (Low-Level Triggered).zip
BOM_Passive Buzzer (Low-Level Triggered).xlsx
93143
Output protection circuit
The input is not polarity-sensitive, but the output is polarity-sensitive. The power supply to the relay is disconnected by pulling down the relay voltage.
The input is not polarity-sensitive, but the output is polarity-sensitive. The power supply to the relay is disconnected by pulling down the relay voltage.
Verification video.mp4
PDF_Output Protection Circuit.zip
Altium_Output Protection Circuit.zip
PADS_Output Protection Circuit.zip
BOM_Output Protection Circuit.xlsx
93144
CH340C programmer
A simple CH340C serial programmer
I
previously purchased several programmers claiming to be CH340C from a certain platform, each with an ESP01S module. None of them worked properly; the chip markings were worn off, and the circuitry differed from the CH340C's specifications. Frustrated and not wanting to waste the ESP01S, I designed this board myself.
This
project does not include the ESP01 module, only the programmer. Automatic ESP download is supported. The board uses a USB-A interface. The two buttons are: the one closer to the USB port is the RST button, and the other is a low-level IO0 button for ESP development. The 2x4 header can be directly plugged into for ESP01 module development. The 2x4 header pins have the same pin arrangement as the header, corresponding one-to-one, and are used for external DuPont wires to program the microcontroller. For ease of understanding, MRX directly corresponds to the microcontroller's RXD pin, and MTX directly corresponds to the microcontroller's TXD pin; no swapping is required. The Windows Device Manager
was verified
to correctly recognize the serial port. The ESP01S module was successfully programmed using the official ESP programming program. After programming with MicroPython, the MicroPython development tool recognized the module correctly and could also program the microcontroller successfully. (
Image of the actual device follows.)
PDF_CH340C Burner.zip
Altium_CH340C programmer.zip
PADS_CH340C programmer.zip
BOM_CH340C programmer.xlsx
93145
CW32 Voltage and Current Meter
Based on the CW32F030C8T6 geospatial voltage and current meter, this training camp taught me about CW32 development, ADC usage, and current sampling.
Participating in this training camp was beneficial because the strict rules required the use of development boards, so I had to obediently settle down and immerse myself in learning. This allowed me to fortunately discover the high precision and high configuration of the CW32 ADC. A powerful current and voltage meter can be implemented with just an MCU, without op-amps or current sensing devices like the INA226. Thanks to Engineer Li for the detailed and informative tutorials, and thanks to LCSC EDA for providing this excellent learning opportunity.
The learning content was quite extensive, so to avoid interference, I didn't make many changes; it was basically a direct copy of the instructor's work. To reduce the purchase of consumables, I made full use of the surface-mount components I had on hand. Resistors, capacitors, and LEDs were all replaced with surface-mount components, resulting in a smaller overall size. I made a mistake with the digital display; it's a bit too large. 
This current and voltage meter benefits from the CW32's 12-bit precision ADC, using a successive approximation method to measure relatively accurate voltage values. A 12-bit ADC means 2 to the power of 12, or 4096 voltage data levels. From 0 to 4096 corresponds to a range of 0 to 1.5V. The 1.5V is the MCU's internal reference voltage (an additional 2.5V reference voltage is also available, but lower voltages generally offer higher accuracy). For comparison, testing, and calibration, the board also provides a TL431 voltage reference chip, offering a 2.5V reference voltage with relatively high accuracy. Current measurement is also done by measuring the voltage and calculating the current value using a 100mΩ current sensing resistor. The 100mΩ current sensing resistor was
used for current measurement. I followed the teacher's Kelvin connection method; I'm not sure how effective it is. The accuracy is acceptable. It's very accurate even without calibration! I measured a dry cell battery at 1.601V with a good multimeter, and this voltmeter and ammeter gave roughly the same reading. 
Below is a picture of the actual device:
This training camp also encountered some difficulties, both in hardware and software. For example, I soldered the wrong voltage divider resistor, resulting in a 20-fold difference in the measured value. After a moment of confusion, I realized my mistake and immediately replaced the resistor to correct it. 
In terms of software, I also had a period where compilation failed. I only understood the problem after comparing several experimental examples. 
This training camp... Mr. Li, the instructor for CW32, provided meticulous explanations. Although the schematic diagram was a bit rough at first (there were a few discarded networks, I didn't know how to draw the 2mm banana plug, (A) in the diagram is an ammeter diagram, etc., which Mr. Li assumed everyone should know), after a few days of learning, I found that Mr. Li's video courses were full of valuable information. He even specially extracted common mistakes made by students and provided targeted explanations. I really learned a lot.
 
 
CW32 voltage and current meter.zip
QQ Video 20240813121010.mp4
PDF_CW32 Voltage and Current Meter.zip
Altium_CW32 voltage and current meter.zip
PADS_CW32 Voltage and Current Meter.zip
BOM_CW32 Voltage and Current Meter.xlsx
93146
Warm Winter Thermometer
The DS18B20 is a commonly used high-precision single-bus digital temperature measurement chip. It features small size, low hardware overhead, strong anti-interference capability, and high accuracy. Today, we will use the DS18B20 to design a lightweight electronic thermometer.
The DS18B20 is a commonly used high-precision single-bus digital temperature measurement chip. It features small size, low hardware overhead, strong anti-interference capability, and high accuracy.
Specifications: Temperature measurement range -55℃ to +125℃, with an error of ±0.4°C within the range of -10℃ to +85℃.
It returns a 16-bit binary temperature value
. Master-slave communication uses a single bus, meaning data transmission and reception are done via a single wire.
No external components are required; the chip itself can function independently.
The DS18B20 includes an internal EEPROM, and the digital conversion accuracy and alarm temperature can be set via configuration registers. Even after a power outage, it retains the resolution and alarm temperature settings.
Each DS18B20 has a unique 64-bit ID, allowing any number of DS18B20s to be connected to a single bus. The temperature value is read from the ROM by searching the DS18B20. The DS18B20 returns a 16-bit binary number representing the detected temperature, with the high five bits indicating whether it's positive
or
negative. If all five high bits are 1, the returned temperature is negative; if all five are 0, the returned temperature is positive. The following 11 bits represent the absolute temperature value. Converting this to decimal and multiplying by 0.0625 gives the current temperature value.
The DS18B20 has three pins:
GND: Power ground; DQ: Digital signal input/output; VDD: External power supply input. The operation of the DS18B20 can be divided into three steps:
1. Initialize the DS18B20; 2. Execute ROM instructions; 3. Execute DS18B20 function instructions
. The second step, executing ROM instructions, involves accessing each DS18B20, searching for its 64-bit serial number, reading the matching serial number value, and then matching it with the corresponding DS18B20. If we are only using a single DS18B20, we can skip the ROM instructions. The byte for skipping ROM instructions is 0xCC.
Here, we use a 74HC573, a 51 microcontroller minimum system, and a DS18B20.
The simulation is as follows:
PDF_WinterWarmThermometer.zip
Altium_WinterWarmThermometer.zip
PADS_Warm Winter Thermometer.zip
BOM_Winter Warmth Thermometer.xlsx
93149
GL3224 Card Reader
Affordable and good-looking GL3224 card reader
Main controller: The GL3224
, including the chip and resistors, costs less than ten yuan, which is much cheaper than card readers on Taobao.
Read/write speed test:
There was a problem with the firmware update; anyone knowledgeable can offer some guidance.
PDF_GL3224 Card Reader.zip
Altium_GL3224 card reader.zip
PADS_GL3224 card reader.zip
BOM_GL3224 card reader.xlsx
93150
electronic
参考设计图片
×
 
 
Search Datasheet?

Supported by EEWorld Datasheet

Forum More
Update:2026-03-26 17:16:57

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
community

Robot
development
community

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号