API List RL78G15 - renesas/Arduino GitHub Wiki
Introduction
- The Arduino APIs corresponding to each platform are listed below.
- A reference for Arduino APIs can be found at the link below.
API List
1. Basic Library
1-01. Digital IO
- Digital-IO
- pinMode()
- digitalWrite()
- digitalRead()
1-02. Analog IO
- Analog IO
- analogReference()
- analogRead()
- analogWrite()
- analogWriteFrequency()
1-03. Advanced IO
- Advanced IO
- tone()
- noTone()
- shiftOut()
- shiftIn()
- shiftOutEx()
- pulseIn()
1-04. Time
- Time
- millis()
- micros()
- delay()
- delayMicroseconds()
1-05. Math
- Math
- min()
- max()
- abs()
- constrain()
- map()
- sqrt()
- sq()
1-06. Bits and Bytes Operation
- Bits and Bytes Operation
- lowByte()
- highByte()
- bitRead()
- bitWrite()
- bitSet()
- bitClear()
- bit()
1-07. Random Numbers
1-08. Interrupt
- Interrupt
- attachInterrupt()
- detachInterrupt()
- inturrupts()
- noInterrupts()
1-09. Hardware serial
- Hardware serial
- begin()
- end()
- available()
- read()
- write()
- print()
- println()
2. Standard Library
2-1. Wire
- Wire
- begin()
- requestFrom()
- beginTransmission()
- endTransmission()
- write()
- availableForWrite()
- available()
- read()
- peek()
- setClock()
- flush()