vinay y.n
Published © GPL3+

Getting started with PSoC 6 and ModusToolbox software

Simple project to get started PSoC 6 Wi-Fi-BT Pioneer Kit using ModusToolbox software

BeginnerFull instructions provided8 hours475
Getting started with PSoC 6 and ModusToolbox software

Things used in this project

Hardware components

Cypress CY8CKIT-062-WIFI-BT
×1

Software apps and online services

ModusToolbox™ Software
Infineon ModusToolbox™ Software

Story

Read more

Schematics

pinout

Code

code

C/C++
#include "cy_pdl.h"
#include "cyhal.h"
#include "cybsp.h"

int main(void)
{
    cy_rslt_t result;
    result = cybsp_init() ; /* Initialize the device and board peripherals */
    CY_ASSERT(result == CY_RSLT_SUCCESS);
enable_irq();
    cyhal_gpio_init(CYBSP_USER_LED5,CYHAL_GPIO_DIR_OUTPUT,CYHAL_GPIO_DRIVE_STRONG, CYBSP_LED_STATE_OFF); /* Enable LED5 As User LED Output */

    for (;;)
    {
    	 cyhal_gpio_write(CYBSP_USER_LED5, false); /* LED5 OFF */
    	 cyhal_system_delay_ms(500); /* Create Delay */
    	 cyhal_gpio_write(CYBSP_USER_LED5, true); /*LED5 ON */
    	 cyhal_system_delay_ms(500); /* Create Delay */
    }}

Credits

vinay y.n

vinay y.n

25 projects • 40 followers
An electronic product engineer with 8 years of experience in the field. The passion for electronics began as a hobby 11 years ago.

Comments