All in one library to control Adafruit's Circuit Playground board. Requires no other dependencies and exposes all Circuit Playground components in a simple to use class. Adafruit Circuit Playground Express is a high-level library that provides objects that represent CircuitPlayground hardware.
Everything that is needed to run Arduino code on Circuit Playground is wrapped up into a tidy library that integrates all the sensing and lighting.
Requires no other dependencies and exposes all Circuit Playground components in a simple to use class.
This high-level library provides objects that represent CircuitPlayground hardware.
The library is free; you don’t have to pay for anything. However, if you want to support the development, or just thank the author of the library by purchasing products from Adafruit! Not only you’ll encourage the development of the library, but you’ll also learn how to best use the library and probably some C++ too
Adafruit playground library is open-source and uses one of the most permissive licenses so you can use it on any project.
There are many examples implemented in this library. One of the examples is below. You can find other examples here
soundPressureLevel.ino
#include <Adafruit_CircuitPlayground.h>
void setup() {
CircuitPlayground.begin();
Serial.begin(115200);
}
void loop() {
Serial.println(CircuitPlayground.mic.soundPressureLevel(50));
}
If you want to contribute to this project:
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
The author and maintainer of this library are Limor Fried/Ladyada and others for Adafruit Industries info@adafruit.com.
Based on previous work by:
This is a library for the Adafruit CircuitPlayground boards:
Check out the links above for our tutorials and wiring diagrams.
Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!
This library is licensed under MIT license. All text above must be included in any redistribution.