blob: 5ef821cd75b82ff8be2661692f1600cd1cc1066c (
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
|
.. _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>`_
|