Pioneer kit - i/o pins most basic project to get started

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Dear fellow developers!

   

The concept of the  Psoc programming is rather new for me. For an introductory course on microcontrollers (@EE BSc) i had the chance to work with the pioneer kit vs 8bit AVR.

   

 

   

Well, what I need is a sample project, where i control a led on on the board, with the user button (NO PWM!).

   

 

   

If any of you could provide this .cydsn file, I'd very much appreciate your kindness!

   

 

   

Yours gergo

0 Likes
1 Reply
lock attach
Attachments are accessible only for community members.
ETRO_SSN583
Level 9
Level 9
250 likes received 100 sign-ins 5 likes given

The pioneer kit has an LED you can control with a simple

   

API to write to the pin, and a button. Already wired

   

to the PSOC 4 pin P0_7 is a button. So -

   

 

   

1) Place a debouncer component

   

2) Place a input pin (assign to P0_7), wire it to debouncer

   

3) Place output pin (assign to one of the leds), see inb attached pin chart

   

4) In a for(;;) { } loop using debouncer API read debouncer and

   

then write to pin (API in datasheet) depending on debouncer state.

   

 

   

Videos on basic tool here www.cypress.com/

   

 

   

Regards, Dana.

0 Likes