element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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
  • About Us
  • 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
Safe and Sound
  • Challenges & Projects
  • Design Challenges
  • Safe and Sound
  • More
  • Cancel
Safe and Sound
Blog Safe & Sound -Flood early-warning Alarm Pack #3: IDE Tools for Development
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Events
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: fyaocn
  • Date Created: 31 Mar 2017 7:04 AM Date Created
  • Views 582 views
  • Likes 4 likes
  • Comments 2 comments
Related
Recommended

Safe & Sound -Flood early-warning Alarm Pack #3: IDE Tools for Development

fyaocn
fyaocn
31 Mar 2017

1. Of all the IDE available for TI products series, I choose CCS7.x and Energia1.6.10E18. These two IDEs combine concise and precise at the same time, without sacrifice performance. Directly put data into register like CCS and Higher Level enegia can make coding simple, saving more time for logical and peripheral utilization.

2. First I test fade.ino for Launch Pad MSP432401R as follows,

image

Arduino -like code shows as,

 

int brightness = 0;    // how bright the LED is

int fadeAmount = 5;    // how many points to fade the LED by

 

void setup()  {

  // declare pin 14 to be an output:

  pinMode(GREEN_LED, OUTPUT);

}

 

void loop()  {

  // set the brightness of pin 9:

  analogWrite(GREEN_LED, brightness);   

 

  // change the brightness for next time through the loop:

  brightness = brightness + fadeAmount;

 

  // reverse the direction of the fading at the ends of the fade:

  if (brightness == 0 || brightness == 255) {

    fadeAmount = -fadeAmount ;

  }    

  // wait for 30 milliseconds to see the dimming effect   

  delay(30);                           

}

The board support for MSP432 shall be installed for board-manager after  installation.

2. Then ,same blink test for CCS7.x

It is OK to use energia in CCS environment like,

image

the binary file fade.bin can be built, which can use uniflash to put them into the Flash of MSP432.

Of course, standard CCS UI can be as follows,

image

 

3. There have been too much choices for me to  use for coding thanks to TI, even make it good for kits to product inspiration.

Now that for LCD boostPack, try the following sketch with "Hello." and characters shown.

image

image

  • Sign in to reply

Top Comments

  • DAB
    DAB over 8 years ago +1
    Nice post. Any reason why the picture does not show the display with HELLO? DAB
  • fyaocn
    fyaocn over 8 years ago +1
    HELLO is the first part of the program and flashed away by following screenshot, I miss that part when I use screenshot. This is demo project and can be reached by any one with energia. It is a real bug…
  • fyaocn
    fyaocn over 8 years ago

    HELLO is the first part of the program and flashed away by following screenshot, I miss that part when I use screenshot.

    This is demo project and can be reached by any one with energia.

    It is a real bug, Thank for correct it.

    Regards

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • DAB
    DAB over 8 years ago

    Nice post.

     

    Any reason why the picture does not show the display with HELLO?

     

    DAB

    • Cancel
    • Vote Up +1 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