我有rfid电路。我试图添加一个7 7段的计数器。 我的七段给出了这样的随机数。Photo 我认为这些数字与我的数字相反。我该如何解决这个问题?
#include <16F887.h>
#fuses XT,NOWDT,NOPROTECT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NODEBUG,NOCPD
#use delay(clock=4m,oscillator)
#define Dig1 PIN_D0
#define Dig2 PIN_D1
#define rfid PIN_D2
#define reset PIN_A1
#use fast_io(b)
#use fast_io(d)
char birler = 0, onlar = 0, sayi = 0;
void main()
{
int digit[10]={0b0111111,0b0000110,0b1011011,0b1001111,0b1101101,0b1111101,0b0000111,0b1111111,0b1101111};
set_tris_b(0x00);
output_b(1);
set_tris_d(0b11111100);
output_d(0b11111100);
output_b(0b11111100);
while(1)
{
output_b(digit[onlar]);
output_d(0b11111101);
delay_ms(5);
output_b(digit[birler]);
output_d(0b11111110);
delay_ms(5);
if(input(rfid) == 0)
{
sayi++;
birler = sayi%10;
onlar = sayi/10;
while(input(rfid) == 0)
{
output_b(digit[onlar]);
output_d(0b11111101);
delay_ms(5);
output_b(digit[birler]);
output_d(0b11111110);
delay_ms(5);
}
}
}
}
答案 0 :(得分:0)
我认为这些数字与我的数字相反。
检查您的七段是否为common cathode,因为似乎代码是针对共阴极七段构建的
如果它是共阳极并且它是您唯一的选择,您只需通过切换digit
数组中的所有位来更改代码以适应它,因为ex为0b10000000
答案 1 :(得分:0)
您真的应该考虑将显示与主循环隔离,并消除代码中的内联延迟。优点是提高了可读性,更易于维护,并消除了实际工作的延迟。
在准备此回复时,我发现您的细分表缺少条目。进入&#39; 4&#39;不见了。
以下代码远未完成。 LED段表中缺少一个数字,您需要使用需要去抖动的开关,并且缺少非阻塞定时器的时钟。
我已复制/粘贴了您的大部分应用,并添加了评论......
#include <16F887.h>
#fuses XT,NOWDT,NOPROTECT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NODEBUG,NOCPD
#use delay(clock=4m,oscillator)
#define Dig1 PIN_D0
#define Dig2 PIN_D1
#define rfid PIN_D2
#define reset PIN_A1
#use fast_io(b)
#use fast_io(d)
// never define const arrays on the stack.
static const int digit[10]= { 0b0111111, 0b0000110, 0b1011011, 0b1001111, /* missing '4' */ 0,
0b1101101, 0b1111101, 0b0000111, 0b1111111, 0b1101111 };
void display(unsigned char value)
{
static char tens = 0;
char dig = (tens) ? (value / 10) : (value % 10);
dig = digit[dig];
output_high((tens} ? Dig2 : Dig1);
output_b(dig); // <-- clobbers the high bit of B
output_low((tens} ? Dig1 : Dig2); // preventing other uses for it.
tens = !tens;
}
void main()
{
char sayi = 0;
output_b(1);
output_d(0b11111100);
output_b(0b11111100); // why set PORTB to 1 earlier? is that a bug?
set_tris_b(0x00); // always init tristate AFTER setting output
set_tris_d(0b11111100);
while(1)
{
display(sayi);
if(input(rfid) == 0) // debouncing needed. 30ms is a good delay for debouncing
{
sayi++; // what happens when we reach 100 ???
}
delay_ms(30); // in real-life, this should not be there.
// there are better ways to throttle a program,
// including going to sleep/idle.
}
}
答案 2 :(得分:0)
如果您的号码显示不正确,请考虑将数字数组更改为
digit[] = {0b1, 0b10, 0b100, 0b1000, 0b10000, 0b100000, 0b1000000};
并运行每个模式5秒钟。这将告诉你哪个位控制哪个段。关于不同制造商的7段显示器,我注意到它们并不总是以相同的方式对段进行编号,因此0b111111可能显示为6或9:不一定是0。