Questions tagged [arduino-zero]
The Arduino Zero is a simple and powerful 32-bit extension of the platform established by the UNO. This board aims to provide a platform for innovative projects in smart IoT devices, wearable technology, high-tech automation, crazy robotics, and much more.
56 questions
5
votes
4
answers
4k
views
Library to set internal analog gain of the Arduino?
My original question was if there is a library that covers the internal comparator and differential and gain modes for the Arduino Uno, Mega 2560, Leonardo, Due, Zero, M0.
The answer is obvious: "No". ...
4
votes
1
answer
4k
views
Built-in capacitive touch detection with SAMD21 development board (Arduino Zero Compatible)
I bought this SAMD21 development board which shows up as an "Arduino/Genuino Zero (Native USB Port)" when plugged in. And I've successfully got a blink sketch running on it all good so far:
The reason ...
4
votes
1
answer
12k
views
Arduino zero Error: unable to find CMSIS-DAP device
I am uploading a test sketch(Blink) to my new Zero(with Wifi101 shield) and when I press Upload in the IDE, the Console says the following:
Arduino: 1.6.10 (Linux), Board: "Arduino/Genuino Zero (...
3
votes
3
answers
16k
views
Proper Micro SD card schematic
I am using a micro sd card shield with an arduino zero, and I am not sure I am using a proper circuit with it. This is the circuit I am using right now:
That is all it is there, just a capacitor for ...
3
votes
2
answers
1k
views
M0 pro: SPI communication, code works on Uno, but not in M0. Using ICSP port
I am trying to establish a communication between a sensor and a M0 -pro using SPI. The code :
#include <SPI.h>
unsigned int result = 0;
void readAngle();
void setup() {
...
2
votes
2
answers
2k
views
Arduino Zero timer setup
Where would I find information on how to configure the Arduino Zero's timers?
Because this...
// Timer stuff
// Set up the generic clock (GCLK4) used to clock timers
REG_GCLK_GENDIV = ...
2
votes
1
answer
224
views
Achieving low power with Seeeduino Cortex-M0+ powered from 12V battery
I have Seeeduino Cortex-M0+, which is similar to Arduino Zero, both using Atmel SAMD21 MCU. It is powered from 12V battery directly to 12V PWRIN jack. Current draw for LED blink test is 18mA. I tried ...
2
votes
2
answers
226
views
Why does my Arduino stop uploading to the Thingspeak server after several hours?
I'm using a Maduino Zero 4G SIM7600 device to upload data from 28 sensors to a ThingSpeak IoT server. It works well for a few hours, then stops uploading the data. Sometimes it starts again after an ...
2
votes
1
answer
275
views
Multiplexer 74HC4067, conflict between channels
I am currently working on an Arduino Zero with a 74HC4067 multiplexer and I am experiencing inconsistencies when testing some of the channels.
My class is the following (it should be functional for 8 ...
2
votes
1
answer
101
views
Strtok operations on Arduino Zero seem to fail in runtime
I am trying to test functionality of strtok() on a new piece of hardware, as I ran out of memory to develop on my Nano. This is a basic example from the internet involving tokenizing the string and ...
2
votes
0
answers
452
views
Problems uploading arduino zero bootloader to atsamd21g18a
I am trying to upload the arduino zero bootloader (https://github.com/arduino/ArduinoCore-samd/tree/master/bootloaders/zero) to an atsamd21g18 breakout board that I made. The breakout has a 32KHz ...
2
votes
1
answer
823
views
Run program from SRAM on SAMD21?
I am looking for an example of how to load a program from sd card to SRAM and execute it from there on the SAMD21.
I understand that the given MCU use the Von Neumann architecture and all code is ...
2
votes
1
answer
351
views
Remap SPI functions to default pins Arduino Zero via software?
I am looking at the documentation for the Arduino Zero, and I am a little confused.
It indicates that pins 13, 12, and 11 can be used for CIPO, COPI and SCK, but using SPI.begin() puts the signals on ...
1
vote
1
answer
163
views
Forcing bootloader startup through program
I am trying to find out if it is possible to trigger programmatically the double-tap on reset button function, implemented in modified version of Atmel's SAM-BA bootloader. The board of interest is ...
1
vote
1
answer
465
views
How to change the FFT function of the Arduino Uno for the Arduino Zero?
#define LIN_OUT 1 // Include the resources for the linear output function
#define Adafruit_ZeroFFT 256 // Sets the ZeroFFT length to 256 points
#define MERR 10 // Number of error values to ...