Appendix B

‘C’ Language Program

The following sample ‘C’ program is included for reference. Figure B-1 shows the output generated by this program.

/ DMX SERIES Sample C program /

# include <stdio.h>

main ()

{

char pcs = “590”;

char desc = “10K OHM 1/4 WATT”;

fputs (“DMX Printer Test Program\n”, stdout);

fputs (“\x02L\n”, stdaux);

/

STX L – Enter Label Formatting

/

fputs (“H07\n” stdaux);

/

Enter Heat Setting of 7

/

 

fputs (“D11\n”, stdaux);

/

Set Width and Height Dot Size /

 

fprintf (stdaux, “191108010000025%s\n”,desc);

/

Select smooth Font /

 

 

fprintf (stdaux, “1a6210000000050%sPCS\n”, pcs);

/

Select Barcode type ‘a’

/

 

fputs (“E\n”, stdaux);

/

End Label format mode and print

/

}

ASCII text file

This ASCII text file will also generate the label shown in Figure B-1.

^BL

H07

D11

19110080100002510K OHM 1/4 WATT<CR> 1a6210000000050590PCS<CR>

E<CR>

74

E-Class DPL Programmer’s Manual

Page 84
Image 84
Datamax E4203 manual ‘C’ Language Program