当前位置:网站首页>Four digit nixie tube display multi digit timing
Four digit nixie tube display multi digit timing
2022-07-08 01:13:00 【xanadw】
Catalog
One 、 A total of four anode digital tubes
Preface
A total of four anode digital tube display 0-9 For a single number, you only need to control the corresponding pin level , But if you need to display multiple numbers , It is not only necessary to control the corresponding level , We also need to use the afterglow effect of human eyes , Achieve by high refresh rate .
One 、 A total of four anode digital tubes
The pin of this four digit nixie tube 12、9、8、6 The corresponding ones are 1、2、3、4 Bit digital strobe signal , Pin 11、7、4、2、1、10、5、3 They correspond to digital tubes a、b、c、d、e、f、g、dp The signal of , The common anode is lit at low level .
Two 、 Show numbers
- The main controller uses arduino nano plate , Connection table of corresponding pins .
Position selection 1
Position selection 2
Position selection 3
Position selection 4
a
b
c
d
e
f
g
dp
12
9
8
6
11
7
4
2
1
10
5
3
P13
P10
P9
P7
P12
P8
P5
P3
P2
P11
P6
P4
1. Display a single number
- Clear all bits :
void clear() { digitalWrite(13,LOW); digitalWrite(10,LOW); digitalWrite(9,LOW); digitalWrite(7,LOW); digitalWrite(12,LOW); digitalWrite(8,LOW); digitalWrite(5,LOW); digitalWrite(3,LOW); digitalWrite(2,LOW); digitalWrite(11,LOW); digitalWrite(6,LOW); digitalWrite(4,HIGH); }
- Show numbers 0:
void num0() { digitalWrite(12,LOW); digitalWrite(8,LOW); digitalWrite(5,LOW); digitalWrite(3,LOW); digitalWrite(2,LOW); digitalWrite(11,LOW); digitalWrite(6,HIGH); digitalWrite(4,HIGH); }
Show numbers 1:
void num1() { digitalWrite(12,HIGH); digitalWrite(8,LOW); digitalWrite(5,LOW); digitalWrite(3,HIGH); digitalWrite(2,HIGH); digitalWrite(11,HIGH); digitalWrite(6,HIGH); digitalWrite(4,HIGH); }
2. Display multiple digits
Show numbers 10:
void num10() { digitalWrite(9,HIGH); num1(); delay(1); clear(); delay(1); digitalWrite(7,HIGH); num0(); delay(1); clear(); delay(1); }
You must add one delay Time delay , Otherwise, only numbers will be displayed 0. The delay time can be adjusted according to your own needs .
summary
Only two digits are shown here , The principle of displaying three digits and four digits is the same , Display the corresponding number by controlling the strobe bit , The delay should be as small as possible , It's OK to reach the resolution that the eye can't find the refresh .
边栏推荐
- Serial port receives a packet of data
- Is it safe to speculate in stocks on mobile phones?
- Smart grid overview
- Know how to get the traffic password
- 5. Over fitting, dropout, regularization
- High quality USB sound card / audio chip sss1700 | sss1700 design 96 kHz 24 bit sampling rate USB headset microphone scheme | sss1700 Chinese design scheme explanation
- Taiwan Xinchuang sss1700 latest Chinese specification | sss1700 latest Chinese specification | sss1700datasheet Chinese explanation
- 50Mhz产生时间
- [necessary for R & D personnel] how to make your own dataset and display it.
- Swift get URL parameters
猜你喜欢
130. 被围绕的区域
HDMI to VGA acquisition HD adapter scheme | HDMI to VGA 1080p audio and video converter scheme | cs5210 scheme design explanation
图像数据预处理
Several frequently used OCR document scanning tools | no watermark | avoid IQ tax
Share a latex online editor | with latex common templates
Markdown learning (entry level)
Saving and reading of network model
3.MNIST数据集分类
Led serial communication
AI遮天传 ML-回归分析入门
随机推荐
[deep learning] AI one click to change the sky
手机上炒股安全么?
German prime minister says Ukraine will not receive "NATO style" security guarantee
130. Surrounding area
Chapter 16 intensive learning
10. CNN applied to handwritten digit recognition
12.RNN应用于手写数字识别
完整的模型验证(测试,demo)套路
130. 被围绕的区域
Redis, do you understand the list
基础篇——整合第三方技术
NVIDIA Jetson test installation yolox process record
New library online | cnopendata China Star Hotel data
Using GPU to train network model
How to use education discounts to open Apple Music members for 5 yuan / month and realize member sharing
1.线性回归
1. Linear regression
Introduction to ML regression analysis of AI zhetianchuan
Get started quickly using the local testing tool postman
12. RNN is applied to handwritten digit recognition