001
23.01.2024, 22:47 Uhr
Ordoban
|
Zitat: | KCMattze schrieb Wie bringe ich den Steuercode 91H in die Erika? |
Auf die V24 ausgeben. Sonst nix.
Die Frage ist, wie das mit dem Drucken beim KC85 gemacht ist. Die Erika nimmt keinen ASCII-Code, sondern ist von der Zeichenbelegung absolut durcheinander:
Quellcode: | //x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x78, 0x00, 0x00, // 0x 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 1x 0x71, 0x42, 0x43, 0x00, 0x48, 0x04, 0x02, 0x29, 0x1d, 0x1f, 0x00, 0x25, 0x64, 0x62, 0x63, 0x40, // 2x ' !".$%&'().+,-./' 0x0d, 0x11, 0x10, 0x0f, 0x0e, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x13, 0x3b, 0x00, 0x2e, 0x00, 0x35, // 3x '0123456789:;.=.?' 0x00, 0x30, 0x18, 0x20, 0x14, 0x34, 0x3e, 0x1c, 0x12, 0x21, 0x32, 0x24, 0x2c, 0x16, 0x2a, 0x1e, // 4x '.ABCDEFGHIJKLMNO' 0x2f, 0x1a, 0x36, 0x33, 0x37, 0x28, 0x22, 0x2d, 0x26, 0x31, 0x38, 0x00, 0x00, 0x00, 0x19, 0x01, // 5x 'PQRSTUVWXYZ...^_' 0x2b, 0x61, 0x4e, 0x57, 0x53, 0x5a, 0x49, 0x60, 0x55, 0x05, 0x4b, 0x50, 0x4d, 0x4a, 0x5c, 0x5e, // 6x '`abcdefghijklmno' 0x5b, 0x52, 0x59, 0x58, 0x56, 0x5d, 0x4f, 0x4c, 0x5f, 0x51, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, // 7x 'pqrstuvwxyz.....' 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 8x 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 9x 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ax 0x00, 0x00, 0x15, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // bx 0x00, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // cx 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x47, // dx 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ex 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00};// fx
|
Macht das IF6000 diese Umwandlung? Wenn ja, dann würde ich vermuten, dass das die 91H herausfiltert. -- Gruß Stefan Dieser Beitrag wurde am 23.01.2024 um 22:48 Uhr von Ordoban editiert. |