Skip to content

Commit df060eb

Browse files
authored
Merge pull request #915 from igmtz/igmtz/print-class-documentation
Print class documentation created
2 parents 79be232 + 0cbe21f commit df060eb

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: Print
3+
categories: [ "Functions" ]
4+
subCategories: [ "Communication" ]
5+
---
6+
7+
8+
9+
10+
= Print
11+
12+
13+
// OVERVIEW SECTION STARTS
14+
[#overview]
15+
--
16+
17+
[float]
18+
=== Description
19+
The Print class is an abstract base class that provides a common interface for printing data to different output devices. It defines several methods that allow printing data in different formats.
20+
21+
Print class is related to several libraries in Arduino that use the printing funcionality to interact with devices such as Serial Monitor, LCD Screen, printers, etc.
22+
23+
Some of the libraries that use the Print class are:
24+
25+
* link:../serial[Serial]
26+
* link:https://reference.arduino.cc/reference/en/libraries/liquidcrystal/[LiquidCrystal]
27+
* link:https://www.arduino.cc/en/Reference/Ethernet[Ethernet]
28+
* link:https://reference.arduino.cc/reference/en/libraries/wifi/wificlient/[Wifi]
29+
30+
31+
--
32+
// OVERVIEW SECTION ENDS
33+
34+
35+
// FUNCTIONS SECTION STARTS
36+
[#functions]
37+
--
38+
39+
'''
40+
41+
[float]
42+
=== Functions
43+
link:https://www.arduino.cc/reference/en/language/functions/communication/wire/write/[write()] +
44+
link:https://www.arduino.cc/reference/en/language/functions/communication/serial/print/[print()] +
45+
link:https://www.arduino.cc/reference/en/language/functions/communication/serial/println/[println()]
46+
47+
'''
48+
49+
--
50+
// FUNCTIONS SECTION ENDS
51+
52+
53+
// SEE ALSO SECTION
54+
[#see_also]
55+
--
56+
57+
[float]
58+
=== See also
59+
60+
--
61+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)