element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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
  • 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
Wireless Power - Beyond the Phone
  • Challenges & Projects
  • Design Challenges
  • Wireless Power - Beyond the Phone
  • More
  • Cancel
Wireless Power - Beyond the Phone
Blog Smart ID Card #3
  • Blog
  • Forum
  • Documents
  • Files
  • Events
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: kevjose
  • Date Created: 2 Jun 2014 6:48 AM Date Created
  • Views 721 views
  • Likes 0 likes
  • Comments 3 comments
  • e-ink
  • wireless_power_challenge
  • beyond_the_phone
  • qi
Related
Recommended

Smart ID Card #3

kevjose
kevjose
2 Jun 2014

I decided to get started with the Wyolum BADGEr as I wait for the Arduino Yun replacement. Getting started did not take long because the BADGEr is fairly well documented in at the Wyolum website. Unfortunately, element14 does not carry the Wyolum BADGEr but the good news is that it does carry the dev board (from Adafruit) on which the the BADGEr is built. Hence all the tutorials and code work just as well with the dev board for element14. (In fact some of them we actually written for the dev board, they just work with BADGEr too.image

 

For any one wishing to get started with the BADGEr, you would require an FTDI breakout (I used Adafruit FTDI friend) and a microSD card (which is provided with the BADGEr). If you plan to use the dev board from Adafuit you would need to connect it to an Arduino board which also has an SD or a microSD card connected to it, this is required because there not enough memory in even the Arduino Mega to hold the frame buffer for the screen. For some reason, the whole screen is to be updated in one go, so the frame is to be buffered in full on the Arduino. A very good work around of this issue has been implemented in the EPD (E paper display) library which uses the SD card as the frame buffer. It is also to be kept in mind that BADGEr is essentially an Arduino Mini and so you must hit RESET when the code starts uploading. (In the excitement of receiving the board, I had forgotten about this and I wasted a day agonizing over the fact that the code wouldn't upload).

 

I was raking my over what layout the ID card should have. The picture on the right is what I could come up with and as you can see I am not much of an Interface Designer. Currently the plan is to display the picture and permanent personal details on the left and the update-able info like lectures and homework deadlines on the right. Please leave any suggestions you may have about the layout in the comments, I could really use some second opinion on this.

 

I have started working on the NRF24L01+ RF links and currently, I have been able to successfully run sample code and also some basic code to send over data saved in EEPROM of the Arduino. The plan is to interface the NRF24L01+ with an Arduino Mini or a bareboned Uno on a perfboard and then interface that with BADGEr over I2C. Next post will cover the RF chip interfacing. I am hoping that the Yun will be here by then and so I can begin with the Internet end of things. Please leave you suggestions in the comments.

Thanks.

Kevin

  • Sign in to reply

Top Comments

  • kevjose
    kevjose over 11 years ago in reply to mcb1 +1
    Hi Mark! Thank you. I found this and this to be very helpful in setting up the BADGEr to display pictures because they need to be in the WIF (Wyolum Image Format) and within a certain resolution to be…
  • mcb1
    mcb1 over 11 years ago in reply to kevjose

    Thanks Kevin

    I'll have another crack at it ...for some reason it split and displaced the image ...so something was wrong.

     

    I've run into some other issues with my KOBO and the large displays are still not available ....so hopefully I can find an easy work around.

     

     

    Mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • kevjose
    kevjose over 11 years ago in reply to mcb1

    Hi Mark!
    Thank you.

     

    I found this and this to be very helpful in setting up the BADGEr to display pictures because they need to be in the WIF (Wyolum Image Format) and within a certain resolution to be displayed.

     

    The time it takes to refresh the screen is more or less bearable for my application, it seems to take more time to actually prepare the frame buffer (which happens silently in the background) than to update the display itself.


    Kevin

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • mcb1
    mcb1 over 11 years ago

    Nice work Kevin.

    Your layout looks very practical.

     

    Last time I tried my BADGEr the pictures didn't display correctly, but you seem to have resolved that.

    How are you finding the display update time.?

     

    Mark

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