Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Wichtig: Bevor Du wegen einem Problem mit der CC2 postest, stelle sicher, daß Du
die neueste OS-Version, die neuseste Compiler-DLL und die neuesten Modulversionen benutzt!
Beachte, daß sich auf der CD zur CC2-Unit/Station auch jetzt noch die ältesten Dateien befinden!
Es gelten folgende Anleitung und Regeln: Regeln CC2Net.de-Forum
Zurück zum Artikel  (Blaue Felder sind Pflichtfelder)


Name:   UserID: 
 E-Mail:
Kategorie
Betreff
Homepage:
Link-Titel:
Link-URL:
Cookie für Name, UserID, E-Mail, Homepage-URL setzen
(Erspart die Neueingabe bei Beiträgen und Antworten)
(Zum Löschen des Cookies hier klicken)
Ich nutze:
C-Control II Unit
C164CI-Controllerboard
C-Control II Station
CCRP5 mit CC2-Unit (Conrad Roboter)
CC2-Application-Board
CC2-StarterBoard
CC2-ReglerBoard
eigenes Board
original OS     OSOPT_V2     OSOPT V3.0 OSOPT V3.1

Kommentar:
Einfügen von HTML im Kommentar:

Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a>
Bild einfügen: <img src="BILDURL">
Text formatieren: <b>fetter Text</b>  <i>kursiver Text</i> <u>unterstrichener Text</u>
Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b>
C2 Quellcode formatieren: <code>Quellcode</code>
ASM Quellcode formatieren: <asm>Quellcode</asm>
(Innerhalb eines Quellcodeabschnitts ist kein html möglich.)
Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst !  

> Hi @all, > > ich habe einige Funktionen geschrieben mit denen man große Zahlen auf dem Display 2x20 od 4x20 > darstellen kann. > > Hier der Code für die Darstellungen von Zahlen über 2 Zeilen. > <code> > function def_doublelinenums() > {byte chars[8]; > > chars[0] = 0x01; > chars[1] = 0x01; > chars[2] = 0x01; > chars[3] = 0x01; > chars[4] = 0x01; > chars[5] = 0x01; > chars[6] = 0x01; > chars[7] = 0x01; > defineChar(0,chars); > chars[0] = 0x1F; > chars[1] = 0x11; > chars[2] = 0x11; > chars[3] = 0x11; > chars[4] = 0x11; > chars[5] = 0x11; > chars[6] = 0x11; > chars[7] = 0x11; > defineChar(1,chars); > chars[0] = 0x1F; > chars[1] = 0x10; > chars[2] = 0x10; > chars[3] = 0x10; > chars[4] = 0x10; > chars[5] = 0x10; > chars[6] = 0x10; > chars[7] = 0x1F; > defineChar(2,chars); > chars[0] = 0x01; > chars[1] = 0x01; > chars[2] = 0x01; > chars[3] = 0x01; > chars[4] = 0x01; > chars[5] = 0x01; > chars[6] = 0x01; > chars[7] = 0x1F; > defineChar(3,chars); > chars[0] = 0x1F; > chars[1] = 0x11; > chars[2] = 0x11; > chars[3] = 0x11; > chars[4] = 0x11; > chars[5] = 0x11; > chars[6] = 0x11; > chars[7] = 0x1F; > defineChar(4,chars); > chars[0] = 0x11; > chars[1] = 0x11; > chars[2] = 0x11; > chars[3] = 0x11; > chars[4] = 0x11; > chars[5] = 0x11; > chars[6] = 0x11; > chars[7] = 0x1F; > defineChar(5,chars); > chars[0] = 0x1F; > chars[1] = 0x01; > chars[2] = 0x01; > chars[3] = 0x01; > chars[4] = 0x01; > chars[5] = 0x01; > chars[6] = 0x01; > chars[7] = 0x1F; > defineChar(6,chars); > chars[0] = 0x1F; > chars[1] = 0x01; > chars[2] = 0x01; > chars[3] = 0x01; > chars[4] = 0x01; > chars[5] = 0x01; > chars[6] = 0x01; > chars[7] = 0x01; > defineChar(7,chars); > > } > function print_upper_num(int num) > { > if num == 0 {put(1);}; > if num == 1 {put(0);}; > if num == 2 {put(7);}; > if num == 3 {put(6);}; > if num == 4 {put(5);}; > if num == 5 {put(2);}; > if num == 6 {put(2);}; > if num == 7 {put(7);}; > if num == 8 {put(4);}; > if num == 9 {put(4);}; > } > function print_lower_num(int num) > { > if num == 0 {put(5);}; > if num == 1 {put(0);}; > if num == 2 {put(2);}; > if num == 3 {put(3);}; > if num == 4 {put(0);}; > if num == 5 {put(3);}; > if num == 6 {put(5);}; > if num == 7 {put(0);}; > if num == 8 {put(5);}; > if num == 9 {put(3);}; > } > > > function print_doublelinenum(int num,int row, int col) > { > goto(row,col); > print_upper_num(num); > goto(row+1,col); > print_lower_num(num); > } > </code> > > Einfach in pcflcd od. rblcd reinkopieren. > > Viel Spaß damit. > > Gruß Frank
Dateianhang: (.gif, .png., .jpg, .zip, .rar)
max. 256kB
max. 256kB