#include // part specific constants and macros
#include «PSoCAPI.h» // PSoC API definitions for all User Modules
unsigned Delay (unsigned int value)// задержка
{
unsigned int i=0;
for (i=0;i<value;i++);
}
void main(void)
{
// M8C_EnableGInt ; // Uncomment this line to enable Global Interrupts
// Insert your main routine code here.
LED1_Start();// инициализация ножки
while (1){
LED1_Invert();// смена состоянии ножки
Delay(50000);
}
}