arduino-nRF5
arduino-nRF5 copied to clipboard
Arduino Core for Nordic Semiconductor nRF5 based boards
I am using a custom nRF52 development board that works in all respects. Except when I tried to output a PWM signal like: void setup() { pinMode(A2, OUTPUT); analogWrite(A2, 200);...
I2S
I'd like to use the Arduino I2S library (ArduinoSound) but I am not sure how to specify the I2S pins using the generic nRF52 board variant, nor which pins are...
Hi, I'm using I2C in a low power solutions. I tried to disable I2C after using it but I obtain strange hight power consumption behaviour. I'm using the following code:...
Copies the generic nrf51 and changes the pinout according to the spec for the MDBT40, the module that ships with the XYZrobot 6 DOF Robotic Arm Kit (https://www.pololu.com/product/2743) I confirmed...
Looks the` analogWrite()` "pwm" signal on the nRF51 (now PWM hardware, so uses a timer instead) does not stop operation even after `pinMode()` and `digitalWrite()` has been applied to the...
All, I was able to get the "generic nRF52" device to support the makerdiary.com nRF52832-MDK (which I got from Seeed Studio) by modifying the generic variant.h file to line up...
Does this core also support nRF51822 based MDBT40 module from Raytac? Here's the product link- http://www.raytac.com/product_detail.php?id=38 Thanks
Looks like the Tone library has not yet been implemented, which is a standard Arduino library also included in the other official cores. Has anybody looked into this before?
This PR includes a SoftwareSerial library, and is compatible with the arduino-org and adafruit nrf52 SoftwareSerial libraries. ### Arduino.h * fix errors in #defines for digitalPinToPort, portOutputRegister, portModeRegister ### WInterrupts...
wiring_analog_* : fallback to digitalWrite if no available PWM channel (copied from AVR core) wiring_analog_nRF52.c : convert pwmChannelPins & pwmChannelSequence -> pwmContext to semi-standardise pwm pin allocation and pwm status...