arduino-audio-driver
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
a
e
g
k
l
n
p
r
Variables
a
e
g
l
n
p
r
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
~
Functions
a
b
c
d
e
g
h
i
l
m
o
p
r
s
t
v
w
~
Variables
a
b
c
d
f
i
l
m
o
p
r
s
t
v
w
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
Functions
Variables
Typedefs
Enumerations
Enumerator
a
b
c
d
i
m
r
s
Macros
a
d
e
f
h
i
l
o
r
t
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
src
Platforms
etc.h
Go to the documentation of this file.
1
#pragma once
2
3
#ifdef ARDUINO
4
# include "Arduino.h"
5
#else
6
#undef delay
7
#ifndef HIGH
8
# define HIGH 0x1
9
#endif
10
#ifndef LOW
11
# define LOW 0x0
12
#endif
13
#ifndef INPUT
14
# define INPUT 0x0
15
#endif
16
#ifndef OUTPUT
17
# define OUTPUT 0x1
18
#endif
19
#ifndef INPUT_PULLUP
20
# define INPUT_PULLUP 0x2
21
#endif
22
23
#ifdef __cplusplus
24
extern
"C"
{
25
#endif
26
27
void
pinMode
(
int
,
int
);
28
void
digitalWrite
(
int
,
int
);
29
void
delay
(
unsigned
long
);
30
31
#ifdef __cplusplus
32
}
33
#endif
34
35
#endif
36
37
// avoid compile errors outside of Arduino
pinMode
void pinMode(int, int)
delay
void delay(unsigned long)
digitalWrite
void digitalWrite(int, int)
Generated by
1.9.1