Difference between revisions of "Userspace Arduino:Libraries"
Line 4: | Line 4: | ||
{|border="3" | {|border="3" | ||
|+ | |+ | ||
− | !Description||Status||Notes | + | !Description||Status||Group|| Notes |
|- style="background:green" | |- style="background:green" | ||
− | | | + | |delay||Working|| Time|| No issues |
|- style="background:green" | |- style="background:green" | ||
− | | | + | |pinMode||Working|| Digital I/O || No issues |
|- style="background:green" | |- style="background:green" | ||
− | |digitalRead||Working|| No issues | + | |digitalRead||Working|| Digital I/O|| No issues |
|- style="background:green" | |- style="background:green" | ||
− | |digitalWrite||Working|| No issues | + | |digitalWrite||Working|| Digital I/O|| No issues |
|- style="background:green" | |- style="background:green" | ||
− | |analogRead||Working|| No issues | + | |analogRead||Working|| Analog I/O|| No issues |
|- style="background:green" | |- style="background:green" | ||
− | |analogWrite||Working|| No issues | + | |analogWrite||Working|| Analog I/O|| No issues |
|- style="background:green" | |- style="background:green" | ||
− | |shiftOut||Working|| No issues | + | |shiftOut||Working||Advanced I/O|| No issues |
|- style="background:yellow" | |- style="background:yellow" | ||
− | | | + | |tone()|| ||Advanced I/O |
|- style="background:yellow" | |- style="background:yellow" | ||
− | |analogReadResolution|| WIP | + | |noTone()|| ||Advanced I/O |
+ | |- style="background:yellow" | ||
+ | |shiftOut()|| ||Advanced I/O | ||
+ | |- style="background:yellow" | ||
+ | |shiftIn()|| ||Advanced I/O | ||
+ | |- style="background:yellow" | ||
+ | |pulseIn() || ||Advanced I/O | ||
+ | |- style="background:yellow" | ||
+ | |analogWriteResolution|| WIP|| Analog I/O | ||
+ | |- style="background:yellow" | ||
+ | |analogReadResolution|| WIP|| Analog I/O | ||
|- style="background:red" | |- style="background:red" | ||
|millis()|| || Time | |millis()|| || Time |
Revision as of 09:11, 22 July 2013
This page has a list of all the libraries and the functions that are supported by Userspace Arduino project.
Libraries
Description | Status | Group | Notes |
---|---|---|---|
delay | Working | Time | No issues |
pinMode | Working | Digital I/O | No issues |
digitalRead | Working | Digital I/O | No issues |
digitalWrite | Working | Digital I/O | No issues |
analogRead | Working | Analog I/O | No issues |
analogWrite | Working | Analog I/O | No issues |
shiftOut | Working | Advanced I/O | No issues |
tone() | Advanced I/O | ||
noTone() | Advanced I/O | ||
shiftOut() | Advanced I/O | ||
shiftIn() | Advanced I/O | ||
pulseIn() | Advanced I/O | ||
analogWriteResolution | WIP | Analog I/O | |
analogReadResolution | WIP | Analog I/O | |
millis() | Time | ||
micros() | Time | ||
delayMicroseconds() | Time | ||
min() | Math | ||
max() | Math | ||
abs() | Math | ||
constrain() | Math | ||
map() | Math | ||
pow() | Math | ||
sqrt() | Math | ||
sin() | Trigonometry | ||
cos() | Trigonometry | ||
tan() | Trigonometry | ||
randomSeed() | Random Numbers | ||
random() | Random Numbers | ||
lowByte() | Bits and Bytes | ||
highByte() | Bits and Bytes | ||
bitRead() | Bits and Bytes | ||
bitWrite() | Bits and Bytes | ||
bitSet() | Bits and Bytes | ||
bitClear() | Bits and Bytes | ||
bit() | Bits and Bytes | ||
attachInterrupt() | Interrupt | ||
detachInterrupt() | Interrupt | ||
interrupts() | Interrupt | ||
noInterrupts() | Interrupt |