diff options
Diffstat (limited to 'docs/source/arduino/bitclear.rst')
-rw-r--r-- | docs/source/arduino/bitclear.rst | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/docs/source/arduino/bitclear.rst b/docs/source/arduino/bitclear.rst index e86dbc5..8a46877 100644 --- a/docs/source/arduino/bitclear.rst +++ b/docs/source/arduino/bitclear.rst @@ -6,43 +6,39 @@ bitClear() Description ----------- -Clears (writes a 0 to) a bit of a numeric variable. - - +(Macro) Clears (writes a 0 to) a bit of a numeric variable. Syntax ------ -bitClear(x, n) - +``bitClear(x, n)`` Parameters ---------- -x: the numeric variable whose bit to clear - - - -n: which bit to clear, starting at 0 for the least-significant -(rightmost) bit +* **x** the numeric variable whose bit to clear +* **n** which bit to clear, starting at 0 for the least-significant + (rightmost) bit Returns ------- -none +None. +Arduino Compatibility +--------------------- -See also --------- - +This implementation is compatible with that of Arduino. -- `bit <http://arduino.cc/en/Reference/Bit>`_\ () -- `bitRead <http://arduino.cc/en/Reference/BitRead>`_\ () -- `bitWrite <http://arduino.cc/en/Reference/BitWrite>`_\ () -- `bitSet <http://arduino.cc/en/Reference/BitSet>`_\ () +See also +-------- +- :ref:`bit <arduino-bit>`\ () +- :ref:`bitRead <arduino-bitread>`\ () +- :ref:`bitWrite <arduino-bitwrite>`\ () +- :ref:`bitSet <arduino-bitset>`\ () |