CY8CKIT-001 Cypress Semiconductor Corp, CY8CKIT-001 Datasheet - Page 90

KIT DEV FOR PSOC3/5

CY8CKIT-001

Manufacturer Part Number
CY8CKIT-001
Description
KIT DEV FOR PSOC3/5
Manufacturer
Cypress Semiconductor Corp
Series
PSoC® CapSenser
Type
MCUr
Datasheets

Specifications of CY8CKIT-001

Contents
Board, CD, CY8C29 & CY8C38 Modules, MiniProg3 Programmer/Debugger, Power Supply
Processor To Be Evaluated
CY8C29, CY8C38
Interface Type
RS-232, USB, JTAG
Operating Supply Voltage
3.3 V, 5 V
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
For Use With/related Products
PSoC 1, PSoC 3 and PSoC 5
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
428-2961

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
CY8CKIT-001A
Manufacturer:
Cypress Semiconductor
Quantity:
135
Sample Projects
86
}
/*******************************************************************************
* Function Name: SendKey
********************************************************************************
*
* Summary:
*
*
* Parameters:
*
*
* Return:
*
*
*******************************************************************************/
static void SendKey(uint8 key)
{
}
/*******************************************************************************
* Function Name: StartWindowsRun
********************************************************************************
*
* Summary:
*
*
*
* Parameters:
*
*
* Return:
*
*
*******************************************************************************/
static void StartWindowsRun(void)
{
Sends keyboard key.
key: Keyboard scan code.
void
Sends the Windows Run command by sending Windows Modifier and 'r' (while
the Windows modifier key is in a down state) and then releasing both keys.
void
void
/* Data array for the keyboard device endpoint */
uint8 keyboardData[] = {0,0,0,0,0,0,0,0};
/* Send Windows modifier key-down data, modifier make */
keyboardData[MODIFIER_KEY_DATA_INDEX] = WINDOWS_LEFT_MODIFIER;
keyboardData[KEY_DATA_INDEX] = LETTER_R;
keyboardData[KEY_DATA_INDEX] = KEY_RELEASE; /* r break */
/* Data array for the keyboard device endpoint */
uint8 keyboardData[] = {0,0,0,0,0,0,0,0};
keyboardData[KEY_DATA_INDEX] = key; /* Send key-down data, make */
GetAckLoadEp(keyboardData); /* Send USB keyboard data */
GetAckLoadEp(keyboardData); /* Send USB keyboard data */
keyboardData[KEY_DATA_INDEX] = KEY_RELEASE; /* Send key-up data, break */
GetAckLoadEp(keyboardData); /* Send USB keyboard data */
/* While Windows modifier key is down send r key, r make */
GetAckLoadEp(keyboardData); /* Send USB keyboard data */
/* Send up keys for both Windows modifier key and r key */
CY8CKIT-001 PSoC Development Kit Guide, Doc. # 001-48651 Rev. **
[+] Feedback

Related parts for CY8CKIT-001