Arduino Full Stack
Search
⌃K
Preface
Part 1 - Introduction
Chapter 1. Getting Started with Arduino
Chapter 2. Programming Grammar
2.1 AVR C
2.2 Digital IO
2.3 Analog IO
2.4 More About IO
2.5 Time Functions
2.6 Interrupt Functions
2.7 Communication Classes
2.8 Arduino Libraries
Part 2 - Sensors
Chapter 3. LED Sensors
Chapter 4. Infrared Sensors
Chapter 5. Audio Sensors
Chapter 6. Magnetic Sensors
Chapter 7. Touch Sensors
Chapter 8. Thermist Sensors
Chapter 9. Switches
Chapter 10. Other Sensors
Chapter 11. More Discussions on Sensors
Part 3 - Motors
Chapter 12. Motors
Part 4 - Display
Chapter 13. Display
Part 5 - Communication
Chapter 14. Communication
Part 6 - Arduino Based Mini Automated Vehicle
Chapter 15. Assemble a Mini Automated Vehicle
Chapter 16. Remote Control
Powered By GitBook

2.7 Communication Classes

2.7.1 Enumeration of Arduino Communication Classes

Several Arduino communication classes are enumerated as follows:
  • ​Arduino Stream​
  • ​Arduino Serial​
  • ​Arduino Wire​
  • ​Arduino SD​
  • ​Arduino Ethernet​

2.7.2 void Serial.print(val, format) and void Serial.println(val, format)

  • brief: print data to the serial port, without/with carriage.
  • param:
    • val: the value to print.
    • format: data format while printing.
  • return: void.
Previous
2.6 Interrupt Functions
Next
2.8 Arduino Libraries
Last modified 5yr ago
On this page
2.7.1 Enumeration of Arduino Communication Classes
2.7.2 void Serial.print(val, format) and void Serial.println(val, format)