Set this custom character.

Namespace:  Phidgets
Assembly:  Phidget21.NET (in Phidget21.NET.dll) Version: 2.1.9.34

Syntax

C#
public void setCustomCharacter(
	int value1,
	int value2
)
Visual Basic (Declaration)
Public Sub setCustomCharacter ( _
	value1 As Integer, _
	value2 As Integer _
)
Visual C++
public:
void setCustomCharacter(
	int value1, 
	int value2
)

Parameters

value1
Type: System..::.Int32
First value given by the customchar utility
value2
Type: System..::.Int32
Second value given by the customchar utility

Remarks

The custom character is defined by two integers.

The two Integers define the character. Each character is 8x5, the first integer defines the top 4x5 and the second the bottom 4x5.

Each 4x5 half-character is defined by 5 hex bytes:

ie:

0x54321 =
21111
33222
44433
55554

0x11111 =
10001
01000
00100
00010

There is a generator utility that will generate the integers for you here: http://www.phidgets.com/documentation/customchar.html

See Also