Paxar Gold 6037EX manual Supply type

Models: Gold 6037EX

1 230
Download 230 pages 30.9 Kb
Page 70
Image 70

Example

#include <conio.h> #include <stdio.h> #include "mmsultra.h"

void main(void)

 

{

// Supply type

unsigned short usType = 0;

PRINTINIT pConfig;

// Print data structure

unsigned short usStatus = 0;

// Battery level

short sStatus = 0;

// Command calls status

sStatus = pclInit(NULL);

// Start Print subsystem

if (sStatus != 0)

 

printf("Init Failed\nError: %d", sStatus);

else {

 

usStatus = pclGetBatteryLevel();

// Check battery

if (usStatus <= 711)

printf("Charge your battery");

 

else {

// Get supply type

usType = pclGetSupplyType();

switch (usType) {

// Display result

case MMS_LOW_ENERGY:

 

printf("Using regular paper"); break;

case MMS_MEDIUM_ENERGY:

 

printf("Using fax paper");

 

break;

case MMS_HIGH_ENERGY:

 

printf("Using synthetic paper");

 

break;

default:

printf("Error-- press any key when reset.");

 

_getch();

}

pclClearError();

 

}

 

}

// Close Print subsystem

pclClose();

}

4-34 Programmer’s Manual

Page 70
Image 70
Paxar Gold 6037EX manual Supply type