Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

Using Serial Communication

Method used to transfer data between two devices.


Serial Monitor & analogRead()

Sending a Message

void setup()

{

  // initialize serial:

  Serial.begin(9600);

}

void loop ( )

{

  Serial.print(“Hands on ”) ;

  Serial.print(“Learning ”) ;

  Serial.println(“is Fun!!!”) ;

}

  • No labels