Skip to main content

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.

Filter by
Sorted by
Tagged with
-2 votes
1 answer
70 views

I have an external device and I need to detect voltage high/low on two wires. The high=12v, low=0v. I am using an Arduino Zero (3.3v). I am thinking of using A1 and A2 connected as follows... link ...
John Henckel's user avatar
2 votes
2 answers
224 views

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 ...
Zurn's user avatar
  • 21
2 votes
1 answer
346 views

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 ...
eramirez2024's user avatar
1 vote
1 answer
247 views

I wanted to compare the debug output of the Arduino Zero when connecting via two different debug paths. Via the embedded debugger (EDBG) connected to Arduino IDE via USB Via the JTAG hardware ...
RowanP's user avatar
  • 869
2 votes
1 answer
223 views

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 ...
Paul Jurczak's user avatar
2 votes
1 answer
274 views

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 ...
Fanch's user avatar
  • 23
1 vote
0 answers
118 views

we are currently working on a device that needs us to connect an sd card reader to 2 Arduino’s ( Uno and zero) , however, we just found that it is not possible to do so without a level converter , may ...
Alya's user avatar
  • 11
3 votes
3 answers
16k views

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 ...
Espada86's user avatar
0 votes
1 answer
415 views

For a project, I am looking for a board to connect eight different neopixel-strips to, on eight different data pins. Because of the great length between the board and the first pixels of these strips, ...
Bart Van Loon's user avatar
1 vote
1 answer
163 views

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 ...
T81's user avatar
  • 23
1 vote
0 answers
229 views

I was reading the article about tensorflow lite on SAMD51 here and tried it and failed to compile. It was the example from the arduino tensorflow lite lirabry and doesnt seem to compile. Selected ...
Anson He's user avatar
0 votes
1 answer
434 views

Using an ATSAMD21 with the Arduino core, I'm running into an issue where the RTCZero alarm callback won't continue running the loop() function. If I schedule another alarm inside the callback, the ...
JPM's user avatar
  • 1
0 votes
1 answer
2k views

I'm trying to get a Bluefruit Feather M0, which has a SAMD21G on it, to do high-frequency PWM by accessing timer registers directly, rather than using the Arduino API to do PWM at ~1 kHz or ~500 Hz. ...
Craig Graham's user avatar
0 votes
1 answer
172 views

Hello i have several power management IC that have an active low indicator for a fault, it would be a waste to dedicate a single digital pin for each of them. So i thought of to interface them to a ...
Jack's user avatar
  • 223
1 vote
0 answers
280 views

I am having issues getting the main program to run after flashing via BOSSA with a bootloader. Jump to the bottom for my question and TL;DR. Here is my current situation: UF2 bootloader successfully ...
naedru's user avatar
  • 11
1 vote
0 answers
67 views

Hello I would be needing to transmit data from one arduino to another as fast as possible? how do I achieve this? Since my application need a lot of pins (its a compact system so mega and due are not ...
Jack's user avatar
  • 223
1 vote
0 answers
99 views

We have worked with a company to design a custom board based on the Arduino Zero and have also had them do some programming for us. In doing so, they have had to modify the following Arduino core ...
Jeff-Patriot's user avatar
0 votes
1 answer
510 views

I've based a sketch off the vanilla WiFi101 server examples. If I define a const char array like this: const char HTML_index[] = "<html><head></head><body>test</body>&...
Geordie's user avatar
  • 195
0 votes
1 answer
388 views

I have to port a Project written for an Arduino Micro to an MKRZERO. It communicates via UART with an IC and should also provide a clock signal. The former code I have used is this: #define ...
UndeadTrashman's user avatar
1 vote
0 answers
92 views

#include <Streaming.h> #include <StopWatch.h> #include <Albert.h> #include "avdweb_AnalogReadFast.h" const byte adcPin = A0; void setup(void) { Serial.begin(9600); while(!...
Raju KC's user avatar
  • 29
-3 votes
1 answer
259 views

I want to download a zip file for the following code from the GitHub. I am pretty new in the GitHub. Can anyone help me how to download the Zip folder for the following code from the GitHub library? I ...
Raju KC's user avatar
  • 29
1 vote
1 answer
919 views

I'm currently using an Arduino MKR Zero board and I need to add a new communication because the Serial1 on pins 13 and 14 is already used by another device. I've followed this tutorial from Arduino ...
Marco R.'s user avatar
4 votes
1 answer
4k views

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 ...
juliusbangert's user avatar
5 votes
4 answers
4k views

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". ...
Jot's user avatar
  • 3,286
0 votes
1 answer
821 views

I have a stepper controller board that I need to pulse every 40 uS or so. I also have I2C sensors and Serial writes to preform. Currently I run an update call in a tight loop, but the I2C sensors ...
Cody Smith's user avatar