Halloween Box Monster

With Halloween coming up soon, I decided to make a cool Halloween prop using Digilent products. After grabbing a chipKIT uC32, a couple of shift registers, a bunch of LEDs, breadboard jumper wires, and a PmodMAXSONAR, I was able to make a distance detecting Halloween Box Monster.

MPIDE vs. MPLAB

Previously, I posted about what a debugger is. Other than all the great features I described in my debugger post, you may be wondering–why does Digilent care? As you probably know, we use many of Microchip’s wonderful products in our chipKIT and chipKIT Pro boards. We still want to address the overarching differences between the user experiences using chipKIT and chipKIT Pro boards, so we’re going to talk about the differences between MPLAB and MPIDE!

FPGA Design Flow Using Vivado Workshop!

Digilent is proud to announce that together with our Brazilian distribution partner, Anacom, and our academic partner Xilinx University Program, we will be hosting a workshop, “FPGA Design Flow using Vivado,” from Oct 29-30. This course will provide professors with an introduction to digital design tool flow in Xilinx All Programmable devices using Xilinx Vivado Design Suite. It will be held at Escola Politécnica da UFBA, Brazil. Attendees will use the Digilent Nexys 4 and the Xilinx Vivado Design Suite to gain the hands-on experience with digital design, basic HDL knowledge, Xilinx 7-series architecture overview, and Xilinx Vivado design suite.

Digilent Pmods — Motor Output

As we continue on with our exploration of the Pmods, after checking out some of the Output Pmods like the DAC, Audio, and Visual Pmods, we find ourselves at the final set (at least for now) of output Pmods. These five Pmods all drive different types of motors including servo, DC, and stepper motors. Through these Pmods, you can get your project on the move, whether its a robot arm, a box monster, or a line-following robot.

Who is LabVIEW Hacker?

So what exactly is LabVIEW? LabVIEW is National Instruments’ program development environment. The name is short for “laboratory virtual instrument engineering workbench”. NI created LabVIEW to enable domain experts to focus on building systems by abstracting the hardware and software. For example, their hardware and software allows a chemist to focus on chemistry and not get bogged down with analog signal conditioning for thermal couples or advanced programming techniques.

Simon Says… with LEDs!

At one point or another, we have all played the “Simon Says” game. In this game, one person, Simon (or Susan, Chad, or whoever happens to be the leader), will say “Simon says” and tell all of the other players to do something, such as raise their left hand. The catch in this game is that if the leader tells the other players to do something without saying the words “Simon says” and the other players do it anyway, they’re out. I personally really enjoy playing Simon Says, but I thought it could even be more fun if you could play Simon Says with a bunch of LEDs…

Pulse-Width Modulation

Pulse-width modulation (PWM) is a technique that takes advantage an electronic device’s capability to rapidly “pulse” one of its digital pins between logic high and logic low voltage states. The idea is that the switching between the two voltage states in a desired pattern will produce an “average” voltage somewhere between the high and low voltage inputs. If, within a given period, the pin is at a high voltage level more often than a low one, an overall higher voltage (but less than the full strength input voltage) will be observed.

Temperature-Sensing Coffee Coaster

Coffee is taken very seriously here at Digilent, as it is in most workplaces. Something that used to make me mad was not knowing when my coffee hit that perfect “Goldilocks” temperature zone where it didn’t burn my mouth but was warm enough to fully enjoy. I am currently working on developing a thermocouple Pmod using Analog Devices MAX31855 and thought of a great application project. If I could somehow sense how hot the temperature of the coffee was, I could have a microcontroller tell me when my coffee hit the perfect temperature range!

Pmod Communication: Serial Peripheral Interface

A while ago, we learned that one of the ways that Pmods are able to communicate with their host board is through SPI. We learned then that serial peripheral interface is a type of communication protocol where the “master” board and the “slave” device (in this case, a Pmod) are able to send bits of data to each other at the same time with the host board controlling the timing of the communication. Although this is a nice overview, it is my personal experience that theoretical overviews are not the most helpful in actually implementing what we are learning. This begs the question: how do you use SPI? Lets find out!