ArduinoCore-API icon indicating copy to clipboard operation
ArduinoCore-API copied to clipboard

Hardware independent layer of the Arduino cores defining the official API

Results 136 ArduinoCore-API issues
Sort by recently updated
recently updated
newest added

This is [Issue 812](http://code.google.com/p/arduino/issues/detail?id=812) moved from a Google Code project. Added by 2012-02-10T18:03:34.000Z by [[email protected]](http://code.google.com/u/102867599453860860098/). Please review that bug for more context and additional comments, but update this bug. Original...

This is [Issue 616](http://code.google.com/p/arduino/issues/detail?id=616) moved from a Google Code project. Added by 2011-08-31T19:11:09.000Z by [[email protected]](http://code.google.com/u/107726014984682000895/). Please review that bug for more context and additional comments, but update this bug. Original...

This is [Issue 549](http://code.google.com/p/arduino/issues/detail?id=549) moved from a Google Code project. Added by 2011-05-24T19:34:41.000Z by [[email protected]](http://code.google.com/u/107726014984682000895/). Please review that bug for more context and additional comments, but update this bug. Original...

https://github.com/arduino/ArduinoCore-API/blob/e1eb8de126786b7701b211332dda3f09aa400f35/api/Common.h#L18-L23 ``` typedef enum { INPUT = 0x0, OUTPUT = 0x1, INPUT_PULLUP = 0x2, INPUT_PULLDOWN = 0x3, OUPUT_PUSHPULL = 0x4, OUPUT_OPENDRAIN = 0x5, } PinMode; ```

Some files (e.g. Interrupts.h) do not contain any license information. This makes them proprietary, so noone can copy / fork this repository without your explicit allowance. This contradicts the information...

In the past, there has been talk of improving print formatting. e.g. on the mailinglist [here](https://groups.google.com/a/arduino.cc/d/topic/developers/y7p5wS4ICIY/discussion), [here](https://groups.google.com/a/arduino.cc/d/topic/developers/NWnjeSyuNek/discussion), [here](https://groups.google.com/a/arduino.cc/d/topic/developers/7KpdLDgFsO0/discussion). The bottom line is that there is a need for a way...

enhancement

I've been thinking about how to help Arduino users do more sophisticated analysis of their sensor data and this seems like a simple thing that could help with a bunch...

Currently, this repo only defines the `analogRead()` and `analogWrite()` functions from the AVR core. These APIs always implicitly return 10-bit ADC values and accept 8-bit PWM values. Other boards have...

Based on the outcome of the API meeting, I've added a first draft of a BLE central API in the [api/BLE/central](https://github.com/arduino/ArduinoCore-API/tree/master/api/BLE/central) folder. It's probably best to review the examples in...

It is more and more common on 32Bit MCUs to support audio applications. What is really missing is the unification of the I2S-API on the different platforms. A good start...