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.
18 questions with no upvoted or accepted answers
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
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
0
answers
118
views
Using a level converter to adjust the voltage levels
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 ...
1
vote
0
answers
331
views
Arduino Zero and micro SD card not working
I have an Arduino Zero processor (atsamd21g18a) with a microSD shield connected (check images of schematics)
The point is that I cant make it to work, not with sd.h sketch and not with sdfat.h sketch....
1
vote
0
answers
229
views
Compile error with Arduino tensorflow lite library
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 ...
1
vote
0
answers
67
views
Free touch big electrodes (arduino zero)
I want to try making big electrodes 20cm*1 cm
but i got an effect i dont understand.
In the picture red and blue are the diffrent electrodes
at first touch the blue one and it rises.
then i touched ...
1
vote
0
answers
280
views
Bootloader and AtmelStudio
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 ...
1
vote
0
answers
68
views
What is the fastest way to data to another Arduino SAMD21 boards
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 ...
1
vote
0
answers
184
views
Adafruit Feather M0 Basic Proto doesn't show up
I bought a Feather M0 basic from Amazon here. I installed all the board definitions and stuff from here I restarted the IDE and when I plugged it in, the Feather doesn't show up in ports or device ...
1
vote
0
answers
99
views
Arduino core libraries
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 ...
1
vote
0
answers
65
views
Short Occuring Between Digital IO Pins on Arduino ZERO
I have a couple custom SAMD21 boards (similar to Arduino Zero) connected to a screen from which I am trying to read PWM screen touch signals.
The two boards are identical - same components and same ...
1
vote
0
answers
282
views
TinyDuino RadioHead compile error with TinyZero
I have a stack of TinyDuino boards including
TinyZero and 433MHZ Long Range Radio TinyShield.
I previously has this processor and had no problem compiling the sketch
and uploading it.
With the ...
1
vote
0
answers
92
views
The code does not produce the serial output
#include <Streaming.h>
#include <StopWatch.h>
#include <Albert.h>
#include "avdweb_AnalogReadFast.h"
const byte adcPin = A0;
void setup(void)
{
Serial.begin(9600);
while(!...
1
vote
0
answers
290
views
Arduino Zero AnalogReadFast Compiling Error
#include <Streaming.h>
#include <StopWatch.h>
#include <Albert.h>
#include "avdweb_AnalogReadFast.h"
const byte adcPin = A1;
void setup(void)
{ Serial.begin(9600);
while(!...
0
votes
0
answers
280
views
How to get a hex file for Samd21 from .ino file
Can you generate a .hex file from an .ino file for the Atsamd21-zero?
I can generate a .bin file but not a .hex file.