The key to this project is how to solve the problem of how to power the high-speed rotating circuit board and how to adjust the time. I used the principle of motor brushes to drill a hole in the rotating shaft, and led the power from the back to the front circuit board through a plug, and this rotating plug was in contact with two copper sheets fixed on the backboard. The problem of adjusting the time is somewhat difficult. One is to connect the circuit board to the PC before rotating, and the computer transmits the timing data. Although this is feasible, it is not convenient. Another method is to use remote control, but this solution has great difficulties in debugging.
In terms of display method, I use two balanced rows of LEDs. In addition to being able to maintain better balance when rotating, it can also utilize the alternating display method on both sides, which is twice as fast as a single row.
This device is not only a clock, it can also dynamically display Chinese characters and patterns, it all depends on how it is used.
The specific production process is as follows:
1. Production of rotating electrical machines
Considering the production cost and convenience, the DC brushless motor used in the large floppy drive of old computers was selected and only partial modifications were made.
This antique floppy drive
Brushless DC motor on floppy drive
Disassembled motor
Carefully disassemble the DC motor and cut a hole in the aluminum shaft with the disc so that it can just fit a plug.
The rotating shaft is processed like this
After assembly
Install the shaft onto the DC motor in reverse order of disassembly.
After the motor is assembled
A brush made of two copper sheets
Side view after the brush is installed. The more protruding components on the circuit board are soldered on the reverse side.
How to connect the power supply to the motor.
From the symbols marked on the circuit board, "+" represents the positive power supply and "G" represents the negative power supply.
The "C" and "M" terminals are connected to the positive and negative ends of the power supply to make the motor run.
Make a hole in an old record according to the position of the motor seat, and the light baffle used for positioning should be determined according to the position of the photosensitive component on the circuit board.
2. Production of circuit boards
This product is controlled by 51 single-chip microcomputer, and the specific electrical schematic diagram is as follows:
The circuit board was designed and manufactured using Protel 99.
Finally get the finished work.
The remote control used is a Panasonic car-mounted one, and only six of its keys are used.
When booting
Timing status
Runtime source code:
#include
sbit gate11=P3^0;
sbit gate12=P3^1;
#define unit unsigned int
#define uchar unsigned char
uchar data BUFFER[]={0,0,0,0,1,1,7};
uchar data M[]={31,28,31,30,31,30,31,31,30,31,30,31};
uchar code NUM1[] =
{
0x80,0x7F,0xC0,0xFF,0x40,0x90,0x40,0x8C, // -0-
0x40,0x82,0xC0,0xFF,0x80,0x7F,0x00,0x00,
0x00,0x00,0x00,0x81,0x80,0x81,0xC0,0xFF, // -1-
0xC0,0xFF,0x00,0x80,0x00,0x80,0x00,0x00,
0x80,0xE0,0xC0,0xF0,0x40,0x98,0x40,0x8C, // -2-
0x40,0x86,0xC0,0xC3,0x80,0xC1,0x00,0x00,
0x80,0x40,0xC0,0xC0,0x40,0x84,0x40,0x84, // -3-
0x40,0x84,0xC0,0xFF,0x80,0x7B,0x00,0x00,
0x00,0x0C,0x00,0x0E,0x00,0x0B,0x80,0x89, // -4-
0xC0,0xFF,0xC0,0xFF,0x00,0x88,0x00,0x00,
0xC0,0x47,0xC0,0xC7,0x40,0x84,0x40,0x84, // -5-
0x40,0x8C,0x40,0xFC,0x40,0x78,0x00,0x00,
0x00,0x7F,0x80,0xFF,0xC0,0x84,0x40,0x84, // -6-
0x40,0x84,0x00,0xFC,0x00,0x78,0x00,0x00,
0xC0,0x00,0xC0,0x00,0x40,0xF0,0x40,0xF8, // -7-
0x40,0x0C,0xC0,0x07,0xC0,0x03,0x00,0x00,
0x80,0x7B,0xC0,0xFF,0x40,0x84,0x40,0x84, // -8-
0x40,0x84,0xC0,0xFF,0x80,0x7B,0x00,0x00,
0x80,0x03,0xC0,0x87,0x40,0x84,0x40,0x84, // -9-
0x40,0xC4,0xC0,0x7F,0x80,0x3F,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x63, // -:-
0x00,0x63,0x00,0x00,0x00,0x00,0x00,0x00,
};
uchar code NUM2[]=
{
0x00,0x00,0x7f,0x80,0xff,0xc0,0x82,0x40, // -0-
0x8c,0x40,0x90,0x40,0xff,0xc0,0x7f,0x80,
0x00,0x00,0x00,0x00,0x20,0x40,0x60,0x40, // -1-
0xff,0xc0,0xff,0xc0,0x00,0x40,0x00,0x40,
0x00,0x00,0x41,0xc0,0xc3,0xc0,0x86,0x40, // -2-
0x8c,0x40,0x98,0x40,0xf0,0xc0,0x60,0xc0,
0x00,0x00,0x40,0x80,0xc0,0xc0,0x88,0x40, // -3-
0x88,0x40,0x88,0x40,0xff,0xc0,0x77,0x80,
0x00,0x00,0x0c,0x00,0x1c,0x00,0x34,0x00, // -4-
0x64,0x40,0xff,0xc0,0xff,0xc0,0x04,0x40,
0x00,0x00,0xf8,0x80,0xf8,0xc0,0x88,0x40, // -5-
0x88,0x40,0x8c,0x40,0x8f,0xc0,0x87,0x80,
0x00,0x00,0x3f,0x80,0x7f,0xc0,0xc8,0x40, // -6-
0x88,0x40,0x88,0x40,0x0f,0xc0,0x07,0x80,
0x00,0x00,0xc0,0x00,0xc0,0x00,0x83,0xc0, // -7-
0x87,0xc0,0x8c,0x00,0xf8,0x00,0xf0,0x00,
0x00,0x00,0x77,0x80,0xff,0xc0,0x88,0x40, // -8-
0x88,0x40,0x88,0x40,0xff,0xc0,0x77,0x80,
0x00,0x00,0x70,0x00,0xf8,0x40,0x88,0x40, // -9-
0x88,0x40,0x88,0xc0,0xff,0x80,0x7f,0x00,
0x00,0x00,0x00,0xc0,0x01,0x80,0x03,0x00, // -/-
0x06,0x00,0x0c,0x00,0x18,0x00,0x30,0x00,
};
unit disp1,disp2,key1,key2;
unit ii,jj;
unit i,sw,xz;
void Delay(unit ms){
ms=ms*3;
while(--ms);
}
void num_led(int kk, int tt)
{
int jj;
for(jj=0;jj<8;jj++){
gate11=key1; gate12=key2;
P2=~NUM1[kk+jj*2];P1=~NUM1[kk+1+jj*2];
Delay(20);
P1=0xff;P2=0xff;
gate11=key2; gate12=key1;
P2=~NUM2[tt+15-jj*2];P1=~NUM2[tt+14-jj*2];
Delay(20);
P1=0xff;P2=0xff;
}
}
void display_clock(void)
{
key1=!key1;key2=!key2;
disp1=BUFFER[3]/10;disp2=BUFFER[4]-(BUFFER[4]/10)*10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
disp1=BUFFER[3]-disp1*10;disp2=BUFFER[4]/10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
ii=160;jj=160;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
disp1=BUFFER[2]/10;disp2=BUFFER[5]-(BUFFER[5]/10)*10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
disp1=BUFFER[2]-disp1*10;disp2=BUFFER[5]/10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
ii=160;jj=160;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
disp1=BUFFER[1]/10;disp2=BUFFER[6]-(BUFFER[6]/10)*10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
disp1=BUFFER[1]-disp1*10;disp2=BUFFER[6]/10;
ii=disp1*16;jj=disp2*16;
num_led(ii,jj);
P2=0xff;P1=0xff;Delay(60);
}
void timer0(void) interrupt 1 using 1
{
TMOD=0x11;
TH0=-(5000/256);
TL0=-(5000%256);
TR0=1;
BUFFER[0]=BUFFER[0]+1;
if (BUFFER[6]%4==0) M[1]=M[1]+1;
if (BUFFER[0]>201+xz){
BUFFER[0]=0;
BUFFER[1]=BUFFER[1]+1;
if (BUFFER[1]==60){
BUFFER[1]=0;
BUFFER[2]=BUFFER[2]+1;
if (BUFFER[2]==60){
BUFFER[2]=0;
BUFFER[3]=BUFFER[3]+1;
if (BUFFER[3]==24){
BUFFER[3]=0;
BUFFER[4]=BUFFER[4]+1;
if (BUFFER[4]>M[BUFFER[5]-1]){
BUFFER[4]=1;
BUFFER[5]=BUFFER[5]+1;
if (BUFFER[5]>12){
BUFFER[5]=1;
BUFFER[6]=BUFFER[6]+1;
if(BUFFER[6]>99) {
BUFFER[6]=0;
M[1]=M[1]-1;
}
}
}
}
}
}
}
}
void intersvr0(void) interrupt 0
{
sw=1;
}
void main(void)
{
xz=8;
key1=1;key2=0;
EA=1;
IT0=1;EX0=1;
IT1=1;ET0=1;
TMOD=0x11;
TH0=-5000/256; TL0=-5000%256;
TR0=1;
for(;;){
Delay(10);
if(sw==1) {display_clock();sw=0;}
}
}
Previous article:Introduction to the principle of rotating LED screen
Next article:The latest LED dimming technology solutions
Recommended ReadingLatest update time:2024-11-16 16:46
- Popular Resources
- Popular amplifiers
- MathWorks and NXP Collaborate to Launch Model-Based Design Toolbox for Battery Management Systems
- STMicroelectronics' advanced galvanically isolated gate driver STGAP3S provides flexible protection for IGBTs and SiC MOSFETs
- New diaphragm-free solid-state lithium battery technology is launched: the distance between the positive and negative electrodes is less than 0.000001 meters
- [“Source” Observe the Autumn Series] Application and testing of the next generation of semiconductor gallium oxide device photodetectors
- 采用自主设计封装,绝缘电阻显著提高!ROHM开发出更高电压xEV系统的SiC肖特基势垒二极管
- Will GaN replace SiC? PI's disruptive 1700V InnoMux2 is here to demonstrate
- From Isolation to the Third and a Half Generation: Understanding Naxinwei's Gate Driver IC in One Article
- The appeal of 48 V technology: importance, benefits and key factors in system-level applications
- Important breakthrough in recycling of used lithium-ion batteries
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
- Three-port network
- RSL10 drives ink screen
- GoKit Case Study: Gizwits IoT Development Platform’s Pet House Transformed into an Air Quality Detector
- Embedded licensing: why not and why not?
- I found a 1963 "Electron Tube Handbook"
- How to extract the effective value of fundamental wave and each harmonic in MATLAB?
- Analysts predict Bluetooth location services will grow at a CAGR of 32% by 2025
- TI blog post - Introduction to basic parameters of analog switches and multiplexers
- Bluetooth chip
- [Mil MYB-YT507 development board trial experience] Unboxing + HELLOWORLD