Posts

Showing posts with the label msp430

msp430

Image
Msp430 blinky (uses onboard led!) Get your Energia development package here: http://energia.nu/ /download/  http://www.ti.com/ww/en/launchpad/launchpads-msp430-msp-exp430g2.html#tabs #include  <msp430g2553.h>   unsigned int i = 0;          // Initialize variables. This will keep count of how many cycles between LED toggles void main(void) {    WDTCTL = WDTPW + WDTHOLD;   // Stop watchdog timer. This line of code is needed at the beginning of most MSP430 projects.                                // This line of code turns off the watchdog timer, which can reset the device after a certain period of time.    P1DIR |= 0x01;              // P1DIR is a register that ...

Cheap tech holiday gift.

Image
If you want to get the older kids into tech or they want to get into tech, you might consider the MSP430 from Texas instruments. You can get almost seven of the MSP430 development kits for the price of just one Arduino. That is right you can get an MSP430 development board for just $4.30 shipped to you in the U.S.  You may want to play with it your self also. Ton's of online documentation. ( i.e. http://www.msp430launchpad.com/ ) Free development software is available for the most popular platforms also online (from T.I.). What is really interesting about this unit is that you can take some software source code for the Arduino and run it on the MSP430. Porting software to the Arduino should be easier if you plan to get the Arduino later. The unit even comes with extra dip chips for your use.The newer Arduino units are soldered in place so really can not do complete development on the unit alone.  Even if the kids grow tired of it, you have not invested a fortune in the un...