aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/bitwrite.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source/arduino/bitwrite.rst')
-rw-r--r--docs/source/arduino/bitwrite.rst52
1 files changed, 0 insertions, 52 deletions
diff --git a/docs/source/arduino/bitwrite.rst b/docs/source/arduino/bitwrite.rst
deleted file mode 100644
index 5d95506..0000000
--- a/docs/source/arduino/bitwrite.rst
+++ /dev/null
@@ -1,52 +0,0 @@
-.. _arduino-bitwrite:
-
-bitWrite()
-==========
-
-Description
------------
-
-Writes a bit of a numeric variable.
-
-
-
-Syntax
-------
-
-bitWrite(x, n, b)
-
-
-
-Parameters
-----------
-
-x: the numeric variable to which to write
-
-
-
-n: which bit of the number to write, starting at 0 for the
-least-significant (rightmost) bit
-
-
-
-b: the value to write to the bit (0 or 1)
-
-
-
-Returns
--------
-
-none
-
-
-
-See also
---------
-
-
-- `bit <http://arduino.cc/en/Reference/Bit>`_\ ()
-- `bitRead <http://arduino.cc/en/Reference/BitRead>`_\ ()
-- `bitSet <http://arduino.cc/en/Reference/BitSet>`_\ ()
-- `bitClear <http://arduino.cc/en/Reference/BitClear>`_\ ()
-
-