-
Content Count
34 -
Joined
-
Last visited
-
Days Won
3
Everything posted by adrianF
-
http://energia.nu/img/LaunchPadMSP430G2553-v1.4.jpg hacked ?
adrianF replied to yyrkoon's topic in Energia - MSP
@@energia I'm still seeing this on several pages... However, when I refresh the page, I am able to get past the error & get to the desired page... Specifically, I am seeing it here: http://energia.nu/guide/import-energia-sketch-to-ccsv6/ Adrian -
Hi all Here's a quick project tutorial that I posted up on hackster.io --> https://www.hackster.io/adrianf/internet-button-ti-launchpad-ifttt-463300 It's a simple "internet-connected button" that triggers an event on IFTTT (If this, then that)'s Maker Channel. They offer a simple RESTful API that we can POST to using an internet-connected LaunchPad. In this tutorial, I used the MSP432 LaunchPad + CC3100 WiFi BoosterPack, but any internet-connected LaunchPad would work just fine! In this tutorial, I am simply triggering a push notification to my phone, however this tutorial can b
-
Hi 43oh-ers! Just wanted to let you all know that we've been working with NKC Electronics to bring the LaunchPad to amazon! Check it out here: TI Launchpad MSP-EXP430F5529LP with breadboard and wires bundle TI Launchpad MSP-EXP430G2 with breadboard and wires bundle Now you all have more options for getting hardware! Thanks Adrian
-
I haven't tried it yet, but I suppose the existing Energia IR library should work with this hardware as well by leveraging a generic PWM pin VS using the specific IR features of the FR2xx/FR4xx devices. Adrian
-
HO! HO! HO! Get Your Stockings Ready - 2014 43oh Secret Santa
adrianF replied to bluehash's topic in Announcements
Fun! I'm in!! -
Great questions, Igor The Grove BoosterPack leverages the following pins for the various connectors. We did our best to align with the 40 pin BoosterPack pin out. Note that we are heavily leveraging the analog & digital pins that are at the "inside-20" pins (the 2 inner-most connectors of the BoosterPack plug). To enable these connections on a 20 pin LaunchPad (i.e. MSP-EXP430G2 or MSP-EXP430FR5969), you will have to use jumper wires to make the appropriate connections. In regards to the CC3200 analog channels, the BoosterPack does not do any scaling. For most of our WiFi dem
-
Hey all Just wanted to announce the availability of the Grove Base BoosterPack from Seeed Studio! Here's a quick blog post that introduces the BoosterPack In short, this BoosterPack enables the LaunchPad kits to gain access to Seeed Studio's HUGE list of Grove modules. I believe they have over 130 different modules today, ranging from ultrasonic, moisture, temperature, gas, relays, displays & more. While these modules can interface with any of the TI LaunchPads, they pair especially well with cloud-connected LaunchPad kits such as the CC3200 for IoT applications/intelligent sensor
-
Good question. So far, I would have handled that locally on the LaunchPad, but I believe Temboo offers a few cloud-side things (i.e. filtering XML/JSON outputs from REST calls) before it is finally pushed back to the LaunchPad.
-
So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp. The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps! Adrian
-
Hi all! Here's a quick video I put together to demonstrate the LaunchPad + CC3100 WiFi BoosterPack working with Temboo and one of the services that Temboo supports. Pretty slick! https://www.youtube.com/watch?v=NStq1KB4FS8 In short, the service that I'm using is Nexmo. They provide a few REST APIs that our LaunchPad can interface with for triggering voice calls. In addition, Nexmo can also return back to the LaunchPad any user input on the keypad of the phone. In this example, I trigger a phone call when my LaunchPad detects water with a moisture sensor. Through the Temboo site
-
Yup - Energia all the way! However, you can always import into CCS.... but yes, it leverages the Energia abstraction & libraries.
-
Temboo support on LaunchPad is one of the coolest things I've seen in a while! The Energia team & the TI LaunchPad team have been working closely with Temboo to bring this user experience to the low-cost LaunchPad family of kits! Through the Temboo website, you can GENERATE (!!!) Energia sketches for interacting with hundreds of web services, which you can ultimately flash to your cloud-connected LaunchPad. Temboo currently supports the CC3200 WiFi LaunchPad as well as the CC3100 BoosterPack when paired with an Energia-supported LaunchPad (i.e. MSP430F5529 LaunchPad, TM4C123 LaunchPad,
-
Super cool! Can't wait to see someone stack the CC110L SubGHz RF BoosterPack on top of it to enable it to be wireless-ly controlled! Nice work guys!
-
Simple Web Server: MSP430F5529LP with CC3000 Boost
adrianF replied to lilyhack's topic in Energia - MSP
Hi LilyHack There is another example sketch in the SimpleLinkWiFi folder called "CC3000FirwareUpdate". Go ahead and flash this example into your LaunchPad while the CC3000 WiFi BoosterPack is plugged in. This sketch will update the firmware of the CC3000 WiFi BoosterPack. Once the sketch if flashed & the red & green LEDs of the F5529 LaunchPad start toggling, that means the firmware has successfully updated! Now that the CC3000 WiFi BoosterPack is updated to the latest firmware, go ahead and try the Simple Web Server example again. Hopefully that fixes the issue! Good luck! -
I know right!??!! Each LaunchPad is defined here in the Firmata boards.h file --> https://github.com/energia/Energia/blob/master/libraries/Firmata/Boards.h
-
Sheng - soooo cool. One thing to also note is that the Firmata GUI that Sheng created is dynamic --- this means that any LaunchPad that has the Firmata Energia sketch flashed to it will sort of do a "handshake" with the GUI to describe the pins & peripherals that are available. Then, the GUI dynamically populates with a list of the pins for that specific LaunchPad. Pretty slick. The Firmata Energia example sketches are in the Energia GitHub >> https://github.com/energia/Energia/tree/master/libraries/Firmata
-
Just to echo what Rei Vilo says, the power of Energia is collection of abstracted APIs that enable developers to rapidly prototype a solution without having to worry about flipping bits at the underlying MCU-specific register level. This is great for someone who wants to get something up and running quickly, completely skipping the step of learning the registers of a potentially new MCU device. In addition, with Energia being based on the Wiring Framework, it allows a community to use a set of "known" functions for toggling I/O, PWM, I2C, SPI, etc, which allows libraries to be created an
-
Hi 43oh folks! I wrote a quick blog post & tutorial on the www.energia.nu website. I wanted to walk through the process of setting up Code Composer Studio v6 to enable Energia sketch imports. This is a cool new feature that takes full advantage of the on-board hardware debugger that is available on our LaunchPad kits & allows developers to go beyond Serial.print(). This provides a nice migration path from Energia to CCS. Energia is great for rapid prototyping, but there are times when a true debugger could be helpful. With CCSv6, we can now import Energia sketches & get ful
-
This is super cool! I'm continually impressed by the simpicity of the CC110L SubGHz RF BoosterPack. The Energia library makes bi-directional RF communication absolutely trivial! Your BoosterPack is a great way of leveraging both the SparkFun RedBot ecosystem of sensors, chassis, etc, while still being able to stack additional BoosterPacks from the TI ecosystem... Do you think you could power the RedBot motors, components, LaunchPad, etc using the BOOSTXL-BATTPACK Lithium Polymer Battery BoosterPack?
-
Hey all! This is Adrian from TI. We absolutely love this effort! To show our support, we'd like to enable you folks with some CC430 Chronos dev kits to help you out! Please send me a PM with your preferred shipping address & we'll send you a Chronos kit ASAP! Thanks - we love the Energia project and I may or may not be wearing a Chronos watch right now Cheers, Adrian
-
This might not be exactly what you're looking for, but it might be close: http://www.ti.com/lit/zip/slac629 There are several BoosterPack templates there created in various design tools (Eagle, altium, etc) The URL is available @ www.ti.com/byob
-
How to make a ROM image of a sketch for distribution
adrianF replied to RobLewis's topic in Energia - MSP
In the "Sketch" menu/drop-down inside of Energia, there are a few simple ways to get to the generated hex file of your compiled sketch. - "Copy Hex file as path" will add the directory path to your hex file to your clipboard - "Show compilation folder" will open up your windows explorer to show where all of the compiled files are, including the .hex file Now that you have the .hex file, users can flash this to a LaunchPad with several tools: - For MSP users, there is MSP430Flasher @ www.ti.com/msp430flasher // this tool is lightweight, has the ability to create batch files for simple o -
I love this idea. I'll brainstorm with b# to see what we can do...
-
Looks amazing! Do you happen to have the pinout for the BoosterPack? And does the library for this BoosterPack sit on top of the existing SPI Energia library? Thanks Rob! Adrian