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 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
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Ideas for Raspberry Pi Zero Projects
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 50 replies
  • Subscribers 683 subscribers
  • Views 5903 views
  • Users 0 members are here
  • raspberry_pi
  • raspberry-pi
  • pi_zero
  • raspberrypi
Related

Ideas for Raspberry Pi Zero Projects

spannerspencer
spannerspencer over 9 years ago

So, we've got the Raspberry Pi Zero games console here, Problemchild mentioned a great idea about turning an old stereo into a modern media player, and Workshopshed has already designed a Pi Zero case for 3D printing.


All of which makes me wonder what other kinds of projects you guys think the Pi Zero would be ideal for?

 

And, for that matter, if you have any Pi Zero projects planned yet?

  • Sign in to reply
  • Cancel
Parents
  • fvan
    fvan over 9 years ago

    Just finished the hardware side of a small project to use the Pi Zero as an internet-connected information display. Could be used to display emails, social media stuff, weather, time, ... I added two general purpose push buttons which can be used to cycle through the different options, or for confirmation or triggering an action.

    imageimage

    • Cancel
    • Vote Up +8 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 9 years ago in reply to fvan

    How does it connect to the internet ?

     

    MK

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Problemchild
    Problemchild over 9 years ago in reply to michaelkellett

    That Damn Elephant in the room again image.. Would imagine WIFI in this case but in many you just don't have enough USB I/O

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Workshopshed
    Workshopshed over 9 years ago in reply to Problemchild

    I gather that some of the IO pins on the Broadcom chip can be remapped so that they appear on the GPIO pins, is it possible to do that with the USB data lines?

     

    I also saw something about using a serial to ethernet module, http://raspi.tv/2015/ethernet-on-pi-zero-how-to-put-an-ethernet-port-on-your-pi

    I wonder if there's a Wifi equivalent?

    It looks like some people are working on this

    https://hackaday.io/project/8678-rpi-wifi-hat

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • fvan
    fvan over 9 years ago in reply to michaelkellett

    Wifi dongle soldered to the data pins exposed on the bottom side of the Pi.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • rew
    rew over 9 years ago in reply to Workshopshed

    Although there is a lot of remapping possible, making it possible to wire everything to every pin is costly in hardware. So, on simple chips like AVR, pin 7 might be PORTB7 or SCLK. If you look in the datasheet there might be a few other names, but those are all "the clock pin of the SPI/Synchronous-serial module". On most ARM chips, each pin has a  choice of up to 17 different functions. But even then, many of the 16 Alternate Function (AF) slots are empty. Anyway, for say the SCLK IO pin of the SPI module you'll now get the choice of two or three pins where you can get that function. (Hmm. For an output I suspect that you can get both pins to act on that signal!).

    For USB the situation is possibly a bit different. Even for "full speed" (12MBPS) the IO cell needs to be a bit different. So on all USB-capable chips that I know it is not possible to remap the USB function anywhere else.

     

    That said: Why would you want to remap the USB pins? There is a connector on them, so you can access them. It would be more appropriate to ask this about the CSI pins.... Those are now unrouted on the 'zero so if you do want a camera, you're out of luck....

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • rew
    rew over 9 years ago in reply to Workshopshed

    Although there is a lot of remapping possible, making it possible to wire everything to every pin is costly in hardware. So, on simple chips like AVR, pin 7 might be PORTB7 or SCLK. If you look in the datasheet there might be a few other names, but those are all "the clock pin of the SPI/Synchronous-serial module". On most ARM chips, each pin has a  choice of up to 17 different functions. But even then, many of the 16 Alternate Function (AF) slots are empty. Anyway, for say the SCLK IO pin of the SPI module you'll now get the choice of two or three pins where you can get that function. (Hmm. For an output I suspect that you can get both pins to act on that signal!).

    For USB the situation is possibly a bit different. Even for "full speed" (12MBPS) the IO cell needs to be a bit different. So on all USB-capable chips that I know it is not possible to remap the USB function anywhere else.

     

    That said: Why would you want to remap the USB pins? There is a connector on them, so you can access them. It would be more appropriate to ask this about the CSI pins.... Those are now unrouted on the 'zero so if you do want a camera, you're out of luck....

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • Workshopshed
    Workshopshed over 9 years ago in reply to rew

    Roger Wolff wrote:

     

    Why would you want to remap the USB pins?

    Simply that the USB connector is on the side, GPIO is on the top/bottom. Just thinking about a wifi module that was as easy to use as a dongle but with the the form factor of a hat.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • rew
    rew over 9 years ago in reply to Workshopshed

    You could make a "shoe". :-)

     

    clicks on the bottom of the 'pi' and has pogo pins to connect to the USB DATA pads on the bottom of the zero.....

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
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