Close
0%
0%

PICxie

An ultra-portable development kit for Microchip Technology microcontrollers!

Similar projects worth following
PICxie is a ultra compact PIC18F development kit designed in for a #48hrMakeItChallenge on the weekend of May 10th, 2015. It was completed in ~37 hours.

Big things come in Tiny Packages

PICxie is a very tiny (1"x1"x1"!) but feature packed development kit for the Microchip PIC18F series of microcontrollers. Specifically the PIC18F26J50.

Powerup your Projects with PICxie!

PICxie is a stand-alone development kit, but is also the perfect addition to any project, simply attach it to an I2C bus and you're good to go! PICxie is jam packed with tons of features; We hate having to change batteries so as with most things we make that are battery powered this one is rechargeable vis USB. It's also programmed via USB using Microchips preloaded HID bootloader firmware.

There is a MicroSD card slot on the top for transferring data between your PC and PICxie, and an IR Receiver to receive commands wirelessly! PICxie includes full color internal RGB lighting, making it possible to the color change depending on different conditions such as orientation, environmental factors, or local magnetic field strength!

An Accelerometer/Magnetometer combo for accurate orientation tracking. Altimeter, Barometer, and Thermometer for environmental mapping. And lastly an included Microphone and Speaker combo, so PICxie can hear you and you can hear it!

The best feature is the exposed I2C bus and 3.3v power lines on the bottom, this means it's easy to make PICxie interface with your existing projects as if it was part of it all along.

PICxie Provides Limitless Potential

Combining everything you could ever want into one small, self-powered, and portable package makes PICxie the last solution you'll ever need for embedded systems development. From environmental monitoring to robotics and beyond, PICxie pushes the limits as to what a development kit should be

  • 1 × PIC18LF26J50 Microprocessors, Microcontrollers, DSPs / Microcontrollers (MCUs)
  • 1 × 10118193-0001LF Connectors and Accessories / Telecom and Datacom (Modular) Connectors
  • 2 × LTST-C19FD1WT LEDs and Accessories / Light Emitting Diodes (LEDs)
  • 1 × FXOS8700CQR1 Semiconductors and Integrated Circuits / Misc. Semiconductors and Integrated Circuits
  • 1 × WM9731CT-ND MicroSD Card Slot

View all 35 components

  • Even Cheaper PICxies? It might happen!

    Crypto [Neo]09/26/2015 at 22:35 0 comments

    So we finally managed to fill our open positions for the PICxie beta! Now we can finally focus on the actual beta rather than recruiting for it. We’ve ordered all of the parts and just as we calculated there was a 20% reduction in production costs. This recent data shows that we might be able to sell these for $44.99! Possibly even $39.99!! Something we are striving to achieve for you guys, we want PICxie to be a very accessible platform. We need 2 things to make that happen:

    Demand/Volume

    We need enough people to buy PICxies to reduce the costs of components, cables, and LiPo batteries. The batteries in particular cost us ~$2.00, but if we had a demand of 50-100 units we could order in bulk and get these for ¼ the price. At that demand the cost for components drops by about 50% as well.

    Equipment

    We really need a 3D printer in-house. We’ve already settled on the Form1+ (Possibly Form2) because it will have no issue printing the cube case that PICxie uses. The problem is we cannot afford to buy one based on our budget. Currently we spend ~$10 on each case, however with a 3D printer this would drop to 1/10th of the cost.


    We can solve both of these issues rather elegantly with crowdfunding. Additionally this would generate PR which is ALWAYS good. We will be doing another Kickstarter, we like Kickstarter because it’s low risk to you guys financially, and well respected as a platform. We know exactly how much we need to raise in order to A) Fulfill rewards and B) Get the equipment we need to drive the cost even lower! We’ll post more about our Kickstarter after the beta units have been sent out.

  • Open Beta access for Sale!

    Crypto [Neo]09/23/2015 at 23:30 0 comments

    So we had quite a few people who did not respond to their beta e-mails, we contacted a lot of the other signups and a lot of people are not responding. If you signed up please check your spam folder. Since only 5/13 of our nominees actually completed the signup process, we have 8 spots open in our Beta program, if you would like early access to the PICxie 8-bit development kit, please check our store page at: http://www.moarobotics.com/products/devkits/

    We’re no longer offering the free PICxie. Only people who have signed up in the before today will be receiving a free PICxie, others will have to pay $4.99 to access the program.

    Open Source Initiative

    Also on the product page are the source AND production files for PICxie, if you are interested in rolling your own PICxie unit, you can download all the files necessary on the product page! FREE! 100% Free. And please if you do so, please credit us and let us know! We’d love to hear about any changes you make to our platform or improvements you come up with. We also love to hear about any neat projects you use PICxie in, so please let us know! :D

  • PICxie Tutorial 1 - Controlling the RGB LEDs

    Crypto [Neo]09/18/2015 at 14:02 0 comments

    In this tutorial, we will cover the basic aspects of controlling the RGB LEDs present on the PICxie development kit.

    Requirements

    You will need the PICxie development kit, a USB cable for programming, Microchips MPLABX and XC8 software, and Mid-Ohio Area Robotics MOARProg software and PICxie Application Libraries installed on your PC. All of this will have came with your PICxie development kit.

    You should at least know the difference between a bit and a byte, and know what hexadecimal and binary numbers are.

    What are RGB LEDs?

    RGB (Red/Green/Blue) LEDs look and function much like a typical LED, however, inside the LED package, there are actually three LEDs representing the primary colors, red, green, and blue. By controlling the brightness of each individual LED you can create pretty much any color you want.

    We create colors just like you would mix paints together on a palette, by adjusting the brightness you control how much color (paint) is added to the palette! The reason that varying the amount of red, green, and blue light creates different colors is that your eye has three types of light receptors in it (red, green, and blue). Your eye and brain work together to convert the amount of each type of light into a color of the spectrum.

    image

    In order to vary the amount of light we need to send a variable amount of power to each color inside the LED.

    PWM Theory

    This is accomplished with Pulse-Width Modulation, a very simple technique for controlling power. We are going to use it to control the brightness of the RGB LEDs. The diagram below shows a typical PWM signal, exactly like the one we’ll be using.

    image

    We will be writing a program that produces a PWM pulse about every .5 milliseconds. The length of this pulse will be controlled by 3 variables representing the red, green, and blue colors. These variables have a range of 0-255, so ‘R = 0” will not produce any pulse at all and 'R=255’ will produce a pulse that lasts all the way until the end of the pulse, effectively turning that color on completely. If we set that variable to something in between 0 and 255, we can vary the brightness of the LED. A value of 13 will turn the LED on about ~5%, and a value of 230 will deliver about 90% of the power. The human eye cannot see the LED turning on and off that fast, so to our brain it appears as if the brightness is changing. Getting Started with MPLabX and PICxie

    Before we dive into coding, the project needs to be created in MPLabX.

    1. Start by opening MPLabX, and clicking File > New Project…

    image
    2. Choose 'Microchip Embedded’ for the project category, and 'Standalone Project’ for the type of project. Click next

    image
    3. The next screen lets us specify the type of device we will be programming. PICxie uses a PIC18F26J50 and that is the device you’ll want to enter into the Device field in this window.
    4. Click next through the 'Select Tool’ window, ICD3 should be selected already (although we will not be using it)

    image
    5. For the compiler, select the XC8 compiler and click next
    6. Enter the project name of your choosing, we will be calling ours Tutorial_1. Leave the other options alone, and click Finish. Your screen should look very similar to following image

    image
    7. Almost done! In the left hand list, make sure the top panel is set to the 'Project’’ tab, then right click on “Tutorial_1” and click 'Properties…’

    image
    8. Go into the “XC8 Linker” category, and from the drop down select 'Memory model’, and in the 'ROM ranges’ field, enter 'default,-0-FFF,-FC00-FFF7’ and click apply

    image
    9. Click the drop down again, and select 'Additional options…’ and in the 'Codeoffset’ field enter '0x1000’ and click OK.

    We are now ready to start coding programs for PICxie!

    Coding the Basics

    Now that we have everything setup, lets write a program that will cycle the RGB LEDs through a bunch of different colors. In the left hand projects listing, right click on 'Tutorial_1’ again, and select 'New’ then click 'C Source File’

    image

    Name the file something recognizable, a common name for...

    Read more »

  • PICxie Open Beta Test

    Crypto [Neo]09/09/2015 at 11:28 0 comments

    So if you are interested in beta testing PICxie, please click the link below.

    http://goo.gl/forms/GePDxUB1JC

    If you’re selected you’ll receive the following a PICxie ultra-portable development kit ABSOLUTELY FREE. You have NOTHING to lose so click the link for more details :D

    We will be selecting our Beta testers Friday of next week and will not be accepting any new signups thereafter!!

    Updates updates updates

    PICxie is working remarkably well, we actually decided to add a small IR emitting LED so that way multiple PICxies can talk to each other wirelessly! This should make for some interesting applications!

    The battery we ended up choosing was actually 50% higher capacity than we planned! This was a great thing to find. PICxie in our tests averages a run-time of about ~20 minutes, but we’re also using a lot of the peripherals to get a high power consumption.

    Having an SD card onboard is AWESOME, we were able to successfully locate a test file in the FAT filesystem and write data to it, then read that data back on windows! We used this to play a very short WAV file from the SD card.

    We built a model rocket that we will be sending a PICxie up in,

    http://www.321rockets.com/magician-SL3-model-rocket-kit.html

    It’s quite formidable looking, we plan to log data such as altitude and temperature as well as G-forces, local magnetic field strength, and orientation. We’ll be making a video and the log data available for your viewing pleasure when the weather is favorable for launch :D.

  • The Big Question

    Crypto [Neo]08/11/2015 at 01:41 0 comments

    So if you’ve been following the development and news about our latest project you might be left asking yourself one question -

    What exactly is PICxie?

    “PICxie is a ultra-portable development kit for Microchip Technology microcontrollers.”

    We’ve taken the traditional idea of a development kit and spun it around on its head! We’ve taken most of the features you’d expect in a development kit and shrunk it down and crammed it into a 1 inch cube!

    PICxie has a built in microphone and speaker combination, full-color RGB lighting, a MicroSD card slot, and an internal rechargeable lithium battery and more! PICxie is loaded with powerful suite of features letting you writing cool programs that can do things like:

    • Log the local temperature, altitude, barometric pressure, orientation, acceleration, or any combination thereof! (Think of a something like a blackbox for RC planes!)
    • Sound detection and recording
    • Servo motor control
    • IR signal detector
    • Local magnetic field strength detector/logger
    • And more!

    And the 4-pin breadboard compatible I2C expansion bus (I2C and 3.3v Power)and extremely small size make it possible to power your projects with PICxie! We’ve used PICxie to make interesting things like:

    • Model rocket altitude, orientation, and GPS location logger
    • Mobile robot
    • Burglar Alarm
    • Universal Remote Control
    • Wireless environmental monitoring
    • And MUCH more!

    Who will benefit from PICxie?

    PICxie is a powerful and robust platform for learning embedded development and coding, and is a perfect complement to intermediary STEM courses focused in those areas. It’s also great for anyone with a serious interest in those fields, as it will teach you how to interface with things like IR receivers and MEMS devices, and use the I2C bus to interface with your own hardware on a breadboard.

    Why should I choose PICxie over any of the other development kits out there?

    Three simple words: Size, Cost, and Functionality. When designing PICxie we already had a good idea of what the competition was. Our main realization was that the cheap ones had no features and were simply a bit more than a break-out board for the MCU. The feature rich ones are usually more expensive, and are definitely not as portable. With PICxie you get 90% of the product in a 90% smaller package!

    OK…but how much will it cost?

    If you’ve spent anytime near a manufacturing or engineering environment you should be aware that out of the following: Quality, Price, and Features; you can only pick 2. Here at MOARobotics we thought that we could beat that thinking and created a product that could encompass all three categories.

    $54.99USD!

    PICxie costs a mere $59.99USD and could potentially get cheaper depending on demand! Right now our two biggest hurdles are the casing and components. Both of those get cheaper in volume and extrapolation tells us that we COULD potentially offer PICxie for ~$35-$40.00USD depending on how popular PICxiewas.

    Kickstarter - Bringing it all to the masses!

    We will be launching a Kickstarter for PICxie! This project culminated in a product that we feel fills a void in the market for a affordable and portable development kit. We primarily need the Kickstarter for the following reasons:

    • Bringing our product out into the market
    • Developing new products in the future
    • Buying equipment to make our products even more affordable
    • Simple publicity

    PICxie is already set to go we just have to draft up our Kickstarter, get a nice presentation video made, drum up some momentum, and conduct our beta test prior to doing it. We think you’ll really like PICxie, and with your help we can bring a really great development kit out into the market! Speaking of betas…

    PICxie Beta B

    If you’re one of the people who like free stuff (and who isn’t :)?) and are interested in getting a FREE PICxie to try out, please signup here, we have about 87 signups at the time of the writing, but only 10-25 people are going to be selected. Signup today for a chance to be an official beta tester for PICxie! As a reward you get a free...

    Read more »

  • MPLABX

    Crypto [Neo]06/23/2015 at 00:19 0 comments

    So we got the new ICs today and immediately switched out the PIC18F26J50 that was bad with a new one and we now have USB! YAY! Unfortuantely we hit another snag because for whatever reason, when our code is compiled with MPLabX it will not run when loaded on PICxie. The bootloader comes up fine, and we can load it, and it verifies perfectly. But PICxie just sits there.

    If we build the EXACT same code but use MPLab v8.92 everything works fine, we're not really sure whats going on, but until we get it resolved we're going back to MPLab v8.92 so we can actually get some demos going!

  • PICxie is born!

    Crypto [Neo]06/17/2015 at 14:52 0 comments

    So we’ve been putting PICxie through it’s paces, one disappointing thing that seems to have happened is that the PIC18F26J50 that we got seems to have a bad USB transceiver! No matter what we do we can’t get the USB the respond. We have 3.3v on the VUSB pin, the oscillator signal is very clean. There is continuity between the end of the cable and the pins on the PIC. After a lot of head scratching we finally just put a project on that had only this code:

    UCON = 0;
    UCFG = 0;
    UCFGbits.UPUEN = 1;
    UCFGbits.FSEN = 1;
    UCONbits.USBEN = 1;

    On the prototype this causes the device to be detected, on the current assembled PICxie nothing happens. All the relevant pins are exactly the same voltage between the two, so at the point we can safely assume the PIC is at fault which isn’t common, but at least now we can order a new one and get the USB bootloader tested.

    As far as the other hardware it’s all working, and we have the ICSP port so we can test everything still. We took a trip from Columbus up to Johnstown, and it was awesome to be able to log the temperature, altitude, barometric pressure, and magnetic field strength during the trip. We’re already working on a GPS module that you can place PICxie into because we’d like to make it easy to be able to correlate the data to the GPS location as well.

    I apologize for the colors not being in proper order ^_^ but here is some bonus assembly PICs to make up for it.

    We’ll have more PICs and hopefully a video or two up this weekend some time so stay tuned!!

  • Now 45% smaller!

    Crypto [Neo]05/14/2015 at 17:36 0 comments

    So when we did the 48hr challenge we were under a time limit, so if we had to increase the size of the form factor to compensate for the challenge we did so. This lead to a package that was 14% bigger and 68% longer than what was originally intended. We decided to do something about that.

    This PCB only measures only 33x23.4mm compared to 35x35mm. This means our case will be able to be shrunk down to a 1" cube. Yippee! It still has everything we've mentioned before, we didn't cut anything :)

    We could probably make the design even smaller but it would be about $5 more expensive. Right now the chip speaker hogs a LOT of the PCB. When we were researching parts we were surprised to discover using the PCB mounted components was actually cheaper than using traditional wire-lead speakers and microphones.

  • Waiting

    Crypto [Neo]05/12/2015 at 23:29 0 comments

    So we've ordered all the stuff for the very first PICxie :D, we're really excited, hopefully it'll all be here soon! We expedited everything we could. It costs about $60 to make one of them, which isn't bad! Of course those are per unit prices which always go down when we get to make stuff at a larger volume.

    We're anticipating selling PICxie for ~$40-50 dollars depending on the kind of response we get PR wise.

    I spent yesterday going over everything with the team and we can't find any obvious errors or issues with the design. Yay! Very impressive for 37hrs worth of work.

    We took the files to make your own PICxie down for a few of reasons:

    1. This is a new design, and we don't feel OK letting anyone spend money that might be wasted on something that may have faults
    2. We've had an incredible response to PICxie, a lot of people really like it, so we might just kickstart it! Afterwards we'll be releasing all the files for sure if we do that.

    We have a couple of good demos written for the PICxie already: A magnetic field indicator, a orientation sensor, and an enviornmental logging demo.

    The last one we're really excited about because we're planning on putting PICxie into the payload compartment of a model rocket and log things like local magnetic field strength, barometric pressure, altitude, orientation, etc.

  • 48hr Challenge Recap

    Crypto [Neo]05/11/2015 at 04:48 0 comments

    Alright so I've posted the production files on the project page for you to download, there is a Bill-of-Materials, use this as a guide to locating parts on Digikey, tomorrow I'll update it with a BOM that has links to all the parts and prices after I order them.

    The PCB Gerber files should be sent to Elecrow, with the service I just linked you should be able to get 10 PCBs,

    The Case STL files should be uploaded to Shapeways, or you can use the links to our shop page below.:

    Case Part A

    Case Part B

    Last there's a couple of labels you can print out onto an adhesive label and put on the PICxie so you can tell what does what.

    With all of that, a little intrepid digikeying, and rework station. You can make your very own PICxie ^__^ Be warned!!! this is a preproduction product (E.G. it's never been made before). I'll be ordering parts tomorrow and once I get the parts and build it I'll post detailed instructions.

View all 20 project logs

Enjoy this project?

Share

Discussions

Jarrett wrote 05/10/2015 at 05:33 point

Awesome.

Good choice of PIC, too, I might have to pick some up for my parts bin.

I know it's too late, but one thing I'd have recommended/been really excited about you doing would have been to build your USB connector into your board. Draw traces right on a 2mm board and used ENIG coating.

I'm planning on doing that at some point anyway, but I wanted to live vicariously through you ;)

  Are you sure? yes | no

Crypto [Neo] wrote 05/10/2015 at 06:32 point

Hey that's actually a good idea, the connector is only $.46USD so it's so cheap that thought's never crossed my mind! But that would be really easy to do right now, and definitely not too late :D. We'll put it on our list if we have the time to do it, thanks for the suggestion!

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates