This example deals with setting up a PWM to blink an LED on the Cypress PSoC4 Pioneer Kit.
Here is the Application schematics:
Also one needs to configure the PWM block { PWM (TCPWM mode) [v1.0] }:
Source Code for the Example:
#include <project.h>
int main()
{
// Start the PWM for blinky
PWM_1_Start();
while(1);
}
After building and loading the example the Blue Color on the RGB LED should blink.


