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

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
3.2.2.8
62
*
*
* Return:
*
*
*******************************************************************************/
void UpdateDisplay (uint16 * voltageRawCount)
{
}
/*******************************************************************************
* Function Name: TxHex
********************************************************************************
*
* Summary:
*
*
* Parameters:
*
*
* Return:
*
*
*******************************************************************************/
void TxHex (uint8 voltageRawCount)
{
}
/* [] END OF FILE */
3. From the Build menu, select Build Ex2_ADC_to_LCD. PSoC Creator builds the project and dis-
Configuring and Programming the PSoC Development Board
1. Disconnect power to the board.
2. Configure the DVK bread board SW3 to 3.3V.
plays the comments in the Output dialog box. When you see the message “Build Succeeded” the
build is complete.
CharLCD_Position(0,9); /* Move the cursor to Row 0, Column 9 */
voltageRawCount: Voltage raw count from ADC
void
CharLCD_PrintNumber(voltageRawCount[0]); /* Print the result */
if (voltageRawCount[0] < 10)
{
}
else if (voltageRawCount[0] < 100)
{
}
Convert voltage raw count to hex value and TX via UART.
voltageRawCount: The voltage raw counts being received from the ADC
void
static char8 const hex[16] = "0123456789ABCDEF";
UART_PutChar(hex[voltageRawCount>>4]);
UART_PutChar(hex[voltageRawCount&0x0F]); /* TX converted second nibble */
UART_PutStringConst("h\r");
CharLCD_Position(0,10); /* Move the cursor to Row 0, Column 10 */
CharLCD_PrintString("
CharLCD_Position(0,11); /* Move the cursor to Row 0, Column 11 */
CharLCD_PrintString("
CY8CKIT-001 PSoC Development Kit Guide, Doc. # 001-48651 Rev. **
"); /* Clear last characters */
"); /* Clear last characters */
/* h for hexadecimal and carriage return */
/* TX converted first nibble */
[+] Feedback

Related parts for CY8CKIT-001