element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Cypress Kits
  • Products
  • Dev Tools
  • Cypress Kits
  • More
  • Cancel
Cypress Kits
Forum PSoC 4 Pioneer Kit Community Project#083 – Raspberry Pi Integration
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Cypress Kits to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 4 replies
  • Subscribers 27 subscribers
  • Views 2878 views
  • Users 0 members are here
Related

PSoC 4 Pioneer Kit Community Project#083 – Raspberry Pi Integration

cy.wbz
cy.wbz over 12 years ago

Hello!

 

We have been targeting two communities in the 100 days projects, Arduino and Pmod. In today’s example we will be adding support for the wildly popular Raspberry Pi hardware. In this example we will have the Pioneer board communicate to the Raspberry Pi. The Raspberry Pi will then send values back to the Pioneer board to control a PWM connected to the LED. Also included in this example is a python script for users to create a hyperterminal program to read and write data to the Pioneer board from the Pi.

 


image

 

Forum Post Attachments:

 

At the bottom of this post we are including the following items:

  • Example Project Zip File
  • Project Images

 

Components Used: 

 

The user can download the example project at the bottom of this post. The project uses the following list of Creator Components:

  • UART
  • I2C
  • SPIS
  • PWM
  • CyClock
  • CyPin
  • ISR

 

Firmware Description:

 

The main.c firmware is included in the example project. Please review the commented sections for more details.

 

The firmware for this project consists of three communication protocols UART, I2C, and SPI. The Pioneer board continuously sends data over the UART and SPI lines which are received by the Raspberry Pi. The Raspberry Pi in return transmits the data back to the Pioneer board using the I2C interface. The values sent from the Raspberry Pi over the I2C port control a PWM value that drives an LED.

 

Also included in this example is the python script that creates the terminal window that displays the UART and SPI values on the Raspberry Pi’s OS screen. In this project we are running the Raspbian OS on the Raspberry Pi. Raspbian is a free OS based on the Debian Linux distro. The following image is for the Python code.

 


image

 

Hardware Connections:

 

For this example the user will need to make a number of connections from the Pioneer board to the Raspberry Pi. On the Raspberry Pi there is a large header that will accept all of the wires from the Pioneer board. Please follow the schematics to connect the Pioneer kit to the Pi.

 

image

 

image

 

Test Your Project:

 

Program the example code into the Pioneer board, complete all of the connections to the Raspberry Pi, load up the python script and start reading in serial data.

 


image

 

I hope this example can help you in your design.

 

Best,

Matt

Attachments:
pi_p4_python.zip
3731.Project Images.zip
pi-p4.zip
  • Sign in to reply
  • Cancel

Top Replies

  • cy.gul
    cy.gul over 12 years ago in reply to Former Member +1
    Hey Richard, There's a few ways you could connect multiple PSoCs to a single RasPi - 1. [RasPi] --> [PSoC 4] over UART, SPI, I2C each. This will get you 3 PSoCs connected, although talking different serial…
Parents
  • DAB
    DAB over 12 years ago

    I like the set up.

     

    It uses a very simple connection to show how you can integrate a General Purpose computer system to a dedicated I/O intensive MCU for a given application.

     

    It helps make the issues between RPi and the Beagle Bone moot.  Why chose one over the other when you can use Both to make a really powerful system?

     

    I think a lot of people forget the overall system design process and get hung up over the selection of minor components. 

    MCU's, desk tops, lap tops, tablets, and even dumb terminals all have a place in system design. 

    Any component you choose today will be obsolete within a year. 

     

    Concentrate on the functions you want to implement and select the components that enable you to attain those goals.

     

    Just my opinion,

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • DAB
    DAB over 12 years ago

    I like the set up.

     

    It uses a very simple connection to show how you can integrate a General Purpose computer system to a dedicated I/O intensive MCU for a given application.

     

    It helps make the issues between RPi and the Beagle Bone moot.  Why chose one over the other when you can use Both to make a really powerful system?

     

    I think a lot of people forget the overall system design process and get hung up over the selection of minor components. 

    MCU's, desk tops, lap tops, tablets, and even dumb terminals all have a place in system design. 

    Any component you choose today will be obsolete within a year. 

     

    Concentrate on the functions you want to implement and select the components that enable you to attain those goals.

     

    Just my opinion,

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube