20 buzzer_en, 21 buzzer_dis, 22 pad_led_light – Hatteland Display 13 inch - HD 13T21 MMC (Widescreen, Inte Ato CPU) User Manual
Page 22: 23 pad_led_light_on, Hatteland display api

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 - [email protected] -
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);