CF-635 Keypad Mapping / LED Documentation

gogonowski

New member
Is CF-635 Keypad Mapping and LED Documentation available for CC2?

This is what was able to be determined from various sources, including the CC2 Programming Guide from JC634. This would be good to add to that document.

KEYPAD PARAMETERS:
Top = 1.0
Bottom = 32.0
Left = 8.0
Right = 16.0
X = ?
V = ?

LED PARAMETERS:
led01_order=5 -------- what other values do what?
led01_smooth=0 ------ 0 = no smoothing - what other values do what?
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 
This is from the data sheet:

#define KP_UP 0x01 (1)
#define KP_ENTER 0x02 (2)
#define KP_CANCEL 0x04 (4)
#define KP_LEFT 0x08 (8)
#define KP_RIGHT 0x10 (16)
#define KP_DOWN 0x20 (32)

I don't know about the LED questions.
 

CF Mark

Administrator
Have a look in "CrystalControl2\documentation\plugin-info" directory.
The INI files in there are commented with the various options.
Some havent been updated in a while though :(

Here are the LED order values (black = off):
#define LED_BLACK_ALWAYS 0
#define LED_BLACK_RED 1
#define LED_BLACK_GREEN 2
#define LED_RED_GREEN 3
#define LED_GREEN_RED 4
#define LED_BLACK_GREEN_RED 5
#define LED_BLACK_RED_GREEN 6

LED smoothing is a value from 0 to 9.
The higher the value, the slower the led will fade between values (average over time).
 
Top