Mark Easley
Published

MSP432 Fun with IoT Workshop 2016

Explore the Educational BoosterPack paired with the MSP432 LaunchPad and then take that to the cloud with the CC3100 Wi-Fi BoosterPack!

BeginnerFull instructions provided2 hours7,000
MSP432 Fun with IoT Workshop 2016

Things used in this project

Story

Read more

Schematics

MSP432 Fun with IoT Workshop Lecture Slides PDF

MSP432 Fun with IoT Workshop Lecture Slides

Code

getMac.ino

Arduino
#include <SPI.h>
#include <WiFi.h>
#include <WiFiClient.h>

void setup()
{
  // put your setup code here, to run once:

  Serial.begin(115200);
  
    // print your MAC address:
  byte mac[6];
  WiFi.macAddress(mac);
  Serial.print("MAC address: ");
  Serial.print(mac[5], HEX);
  Serial.print(":");
  Serial.print(mac[4], HEX);
  Serial.print(":");
  Serial.print(mac[3], HEX);
  Serial.print(":");
  Serial.print(mac[2], HEX);
  Serial.print(":");
  Serial.print(mac[1], HEX);
  Serial.print(":");
  Serial.println(mac[0], HEX);

  
}

void loop()
{
  // put your main code here, to run repeatedly:
  
}

EducationalBPMKII_Examples_MSP432.zip

Arduino
No preview (download only).

Credits

Mark Easley
65 projects • 138 followers
Texas Instruments LaunchPad SW Engineer
Contact

Comments

Please log in or sign up to comment.