User guide

DOC101014-1_Hatteland Display API_AIPC.docx rev: 7
Created: 17.11.2011 Modified: 07.10.2013 22 of 27
Hatteland Display AS, Åmsosen, N-5578 Nedre Vats, Norway
Tel: (+47) 4814 2200 - mail@hatteland-display.com - www.hatteland-display.com
Hatteland Display API
All intellectual properties belongs to Hatteland Display AS
byte[] output = new byte[0];
byte[] input = new byte[0];
byte pNBytes = Convert.ToByte(output.Length);
errCode = hwApiHatteland.HWAPIcommandRW(COMMANDS.HS_DIS, false, input, output, ref pNBytes);
4.5.20 BUZZER_EN
int errCode = -1;
byte[] output = new byte[0];
byte[] input = new byte[0];
byte pNBytes = Convert.ToByte(output.Length);
errCode = hwApiHatteland.HWAPIcommandRW(COMMANDS.BUZZER_EN, false, input, output, ref pNBytes);
4.5.21 BUZZER_DIS
int errCode = -1;
byte[] output = new byte[0];
byte[] input = new byte[0];
byte pNBytes = Convert.ToByte(output.Length);
errCode = hwApiHatteland.HWAPIcommandRW(COMMANDS.BUZZER_DIS, false, input, output, ref pNBytes);
4.5.22 PAD_LED_LIGHT
int errCode = -1;
byte[] output = new byte[1];
byte[] input = new byte[0];
byte pNBytes = Convert.ToByte(output.Length);
errCode = hwApiHatteland.HWAPIcommandRW(COMMANDS.PAD_LED_LIGHT, true, input, output, ref pNBytes);
4.5.23 PAD_LED_LIGHT_ON
int errCode = -1;
byte[] output = new byte[0];
byte[] input = new byte[0];
byte pNBytes = Convert.ToByte(output.Length);
errCode = hwApiHatteland.HWAPIcommandRW(COMMANDS.PAD_LED_LIGHT_ON, false, input, output, ref pNBytes);