blob: 1e854bad779000262157e8b579fa3e8ef7abb91d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
.. _arduino-wordcast:
word()
======
Description
-----------
Convert a value to the
`word <http://arduino.cc/en/Reference/Word>`_ data type or create a
word from two bytes.
Syntax
------
word(x)
word(h, l)
Parameters
----------
x: a value of any type
h: the high-order (leftmost) byte of the word
l: the low-order (rightmost) byte of the word
Returns
-------
word
See also
--------
- `word <http://arduino.cc/en/Reference/Word>`_
.. include:: cc-attribution.txt
|