Sandeep Mistry

Results 293 comments of Sandeep Mistry

There's something weird going on with the MKR1000. I connected an FTDI to the Serial pins on my Arduino Zero then loaded the following sketch via the programming port: ```...

Here's an updated sketch that works for me: ``` arduino #include const byte button = 5; bool ledIsOn = false; RTCZero rtc; void setup() { // Configure the regulator to...

@rocketscream thanks for the link! I tried changing the EIC to use `GCLK_CLKCTRL_GEN_GCLK2` (which is the `XOSC32K` started by RTCZero) instead of `GCLK_CLKCTRL_GEN_GCLK0`, and this worked! We'll need to figure...

> Why is this in there anyways? I always get it out to get the power down. For compatibility with AVR core behaviour. On boards like the Uno, all pins...

hi @benheck, Thank you for bringing this up, do you have time to make a pull request for this change and provide a code snippet to validate the behaviour before...

@microbuilder yes, I had the radio on and had a characteristic to set the RGB value of all LED's. I was using the following sketch: https://gist.github.com/sandeepmistry/d2e8687a6993e9a110b7 BLEPeripheral doesn't set up...

Hi @thedistinguishedlunatic, Could you please provide more details on how your environment was setup?

Hi @thedistinguishedlunatic, Could you please provide more information on the full set of steps you are using? Thanks.

Hi @fredsco, That microphone is not supported as it uses an I2S interface, only microphones with a PDM or analog interface are supported.

Hi @viktorkesler, `tud_cdc_connected()` wait for the USB serial port to be open, so in the original example code the microphone will be initialized after this.