Energia: Difference between revisions

From air
Jump to navigation Jump to search
Line 13: Line 13:
void setup() {
void setup() {
// initialize serial communications at 9600 bps:
// initialize serial communications at 9600 bps:
Serial.begin(9600);
Serial.begin(9600); // 4800 with msp430g2231
}
}


Line 32: Line 32:


</pre>
</pre>




==Supported Boards==
==Supported Boards==

Revision as of 09:27, 26 February 2013

Energia IDE

Energia is a fork of Arduino’s Processing IDE for TI’s MSP430 microcontrollers.


Examples

Analog Read (A0)
const int analogInPin = A0;  // Launchpad P1.0 Analog input pin that the potentiometer is attached to

int sensorValue = 0;        // value read from the pot

void setup() {
  // initialize serial communications at 9600 bps:
  Serial.begin(9600); // 4800 with msp430g2231
}

void loop() {
  // read the analog in value:
  sensorValue = analogRead(analogInPin);            

  // print the results to the serial monitor:
  Serial.print("sensor = " );                       
  Serial.print(sensorValue);      
  Serial.println();   

  // wait 10 milliseconds before the next loop
  // for the analog-to-digital converter to settle
  // after the last reading:
  delay(10);                     
}

Supported Boards


Pin mapping

https://github.com/energia/Energia/wiki/Hardware#wiki-LaunchPad_MSP430G2452

Links