도트매트릭스 초보 질문이요

hhmy95의 이미지

도트매트릭스에 속도, 시간을 출력하는 과정에서 먼저 0~9에 대한 폰트를 원하는 위치에 출력하려고 하는데
이렇게 하면 출력이 이상하게 나오네요,,,,
어느부분이 문제인지 알수 있을까요,,,
오픈소스라 해석하기가 어렵네요ㅜ

unsigned int string_test[10][5] = {
{0x07, 0x05, 0x05, 0x05, 0x07}, // 0
{0x01, 0x01, 0x01, 0x01, 0x01}, // 1
{0x07, 0x01, 0x07, 0x04, 0x07}, // 2
{0x07, 0x01, 0x07, 0x01, 0x07},//3
{0x05, 0x05, 0x07, 0x01, 0x01},//4
{0x07, 0x04, 0x07, 0x01, 0x07},//5
{0x07, 0x04, 0x07, 0x05, 0x07},//6
{0x07, 0x05, 0x05, 0x01, 0x01},//7
{0x07, 0x05, 0x07, 0x05, 0x07},//8
{0x07, 0x05, 0x07, 0x01, 0x07}//9
};
void ActivePulse()
{
  LE_ON;  delay_us(1);  LE_OFF; //래치 출력
  OE_ON;
  delay_us(100);
  OE_OFF;
}
 
void row_dynamic()
{
       static unsigned int str_cnt=0;
 
       switch(str_cnt)//ROW SHIFT!
        {
        case 0:A0_OFF; A1_OFF; A2_OFF; A3_OFF;break;
        case 1:A0_ON; A1_OFF; A2_OFF; A3_OFF; break;
        case 2:A0_OFF; A1_ON; A2_OFF; A3_OFF; break;
        case 3:A0_ON; A1_ON; A2_OFF; A3_OFF; break;
        case 4:A0_OFF; A1_OFF; A2_ON; A3_OFF; break;
        case 5:A0_ON; A1_OFF; A2_ON; A3_OFF; break;
        case 6:A0_OFF; A1_ON; A2_ON; A3_OFF; break;
        case 7:A0_ON; A1_ON; A2_ON; A3_OFF; break;
        case 8:A0_OFF; A1_OFF; A2_OFF; A3_ON; break;
        case 9:A0_ON; A1_OFF; A2_OFF; A3_ON; break;
        case 10:A0_OFF; A1_ON; A2_OFF; A3_ON; break;
        case 11:A0_ON; A1_ON; A2_OFF; A3_ON; break;
        case 12:A0_OFF; A1_OFF; A2_ON; A3_ON; break;
        case 13:A0_ON; A1_OFF; A2_ON; A3_ON; break;
        case 14:A0_OFF; A1_ON; A2_ON; A3_ON; break;
        case 15:A0_ON; A1_ON; A2_ON; A3_ON; break;
        }
 
    ++str_cnt;
    if(str_cnt==16)
    {
      str_cnt=0;
    }
}
 
void shift_Register(unsigned char out)
{
  unsigned char clk = 0;
 
  for (clk = 0; clk < 8; clk++) { 
    if (out & (0x80 >> clk))
    {
	  Data_Green_ON;
          Data_Red_ON;
    }
    else
    {
      Data_Green_OFF;
      Data_Red_OFF;
    }
    Clk_ON;
    delay_us(1);
    Clk_OFF;
  }
}
 
void dot_display(unsigned char first)
{
   unsigned int i = 0;
   unsigned int buff[16] = {0};
   unsigned char high = 0;
   unsigned char low = 0;
 
 
   for (i = 0; i < 16; i++)
   {
     buff[i] = string_test[first][i];
   }
   for (i = 0; i < 16; i++)
   {
 
     high=(buff[i]>>8);
     low=(buff[i]&0xff);
 
 
 
     shift_Register(high);
     shift_Register(low);
 
     row_dynamic();
     ActivePulse();
   }  
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.