Download PDF Parts List View on YouTube Download Code

Meet the Seeeduino XIAO

Today we will take a look at the Seeeduino XIAO, a tiny microcontroller with impressive capabilities.

Introduction

When you need a microcontroller to bring your latest invention to life the first impulse is usually to grab an Arduino board, probably an Arduino Uno. It makes sense, the Arduino Uno is easy to work with, and the Arduino IDE is a familiar programming environment with a wealth of libraries and sample code that simplify development.

But for all of its advantages, the Arduino Uno is a pretty old piece of technology, dating back to around 2005. And it has limitations (such as speed or analog input resolution) that make it a poor choice for some designs.

So for more advanced projects or better-performing versions of existing designs, we can look at some other, more modern microcontroller boards.

Seeeduino XIAO

We have already done that with the ESP32 boards, they are much more powerful than the ATMEGA328-based Arduino boards and have a wealth of additional features. And there are other selections as well, Arduino themselves have a range of more powerful microcontroller boards based upon 32-bit processors instead of the old 8-bit designs like the Uno.

The board we are looking at today is a very tiny and very inexpensive offering from Seeedstudio. Called the Seeeduino XIAO (pronounced “sh-ow”) it is a 32-bit Arduino-compatible module that can be used to update and improve your Arduino designs.

Incidentally, if you are wondering about the origins of the word XIAO, it is a type of Chinese flute that has been around for centuries.

Seeeduino XIAO

The Seeeduino line of microcontrollers from Seeedstudio are Arduino-compatible boards, kits, and peripherals. Many of them include “Grove” connectors, an interface standard used by Seeedstudio and some other manufacturers to simplify interfacing microcontrollers with external sensors and displays.

The Seeeduino XIAO is the latest entry (as of this writing) to this group of boards, and it’s also the smallest. In fact, it’s probably about the smallest Arduino-compatible board you’ve ever seen, with the exception perhaps of a few ATtiny85-based offerings. In performance, this thing is light years ahead of the ATtiny85.

Seeeduino XIAO Packaging

The XIAO is available individually or in 3-packs, and it’s a quality build. The boards are packaged with some male header pins which you can solder in if you wish to use them, or you can just wire to the pins directly. The only connector on the board is a USB-C jack.

To understand the Seeeduino XIAO you really need to understand the microcontroller chip that powers it, the SAMD21. So let’s take a look at that before we hook up our XIAO.

SAMD21 MIcrocontroller

The heart of the tiny Seeeduino XIAO is the Atmel ATSAMD21 Cortex M0+ 32-bit microcontroller from Microchip. This tiny wonder has been around since 2012 and it has the following specifications:

  • 32-bit single-core processor
  • Clock speed up to 48MHz
  • 32KB SRAM
  • 256KB Flash Memory
  • 11 Digital I/O
  • 11 12-bit ADC Inputs
  • 1 DAC Output
  • Support for up to 120 touch channels
  • USB Device and Embedded host
  • Hardware RTC
  • 1.62V to 3.63V power supply
  • Extremely low power consumption
  • 6 serial communication modules (SERCOM) configurable as UART/USART, SPI or I2C

This processor is used in a number of other microcontroller boards, including the Arduino Zero , Arduino MKRZero and Arduino MKR 1000 boards. Seeedstudio also makes the Seeeduino Cortex-M0+ and Seeeduino Lotus Cortex-M0+, both of which support Grove connectors. Adafruit and Sparkfun also make boards using the SAMD21 microcontroller.

Seeeduino XIAO Pinouts

The Seeeduino XIAO is a tiny module with 14 output pins, as well as a few other surface connections.

Unlike most modules, the pins on the XIAO are numbered starting at 0 instead of 1, so the pins range from 0 to 13. This allows the pin numbers to correspond to the port numbers for the digital I/O and analog input connections.

Most of the pins on the Seeeduino XIAO serve multiple functions, so it is easier to examine them by dividing them into functional groups.

Power Connections

The ATSAMD21G18 processor is a 3.3-volt device, however, the XIAO has an onboard XC6206P3232MR DC-DC Power Converter to allow the board to be powered by 5-volts as well.

There are actually a few different ways of powering the Seeeduino XIAO:

  • The USB-C connector powers the XIAO from the attached computer.
  • You can apply 5-volts to pin 13, this will be reduced to 3.3-volts by the internal DC-DC converter.
  • You can apply 3.3-volts to pin 11.
  • You can use the VCC and GND connections underneath the XIAO and apply 3.7 to 5-volts. This is an ideal method of powering the XIAO with a small LiPo battery.

Seeeduino XIAO Power Pins

The power pins can be used as inputs or outputs, as they are attached across the DC-DC converter. If you power the XIAO with the USB-C connection then you can use the power pins as outputs, delivering 5-volts on pin 13 and 3.3-volts on pin 11.

If you apply 5-volts to pin 13 you can use pin 11 as a 3.3-volt output. You can also power the XIAO by providing your own 3.3-volt power supply and connecting it to pin 11 – in this case the 5-volt pin is non-functional.

Pin 12 is the Ground connection.

Analog Input Connections

The Seeeduino XIAO has 11 analog inputs, each connected to a 12-bit A/D converter.

Seeeduino XIAO Analog Inputs

Note that the maximum voltage you can apply to these inputs is 3.3-volts.

Digital I/O Connections

The XIAO also has 11 digital I/O pins, sharing the same pins as the analog inputs.

Seeeduino XIAO Digital Pins

Remember, the Seeeduino XIAO I/O pins are 3.3-volt logic, and they are NOT 5-volt tolerant! If you need to interface with 5-volt logic devices you’ll need to use a level converter to avoid damaging the XIAO.

Other Connections

Many of the other pins on the XIAO module have additional functions.

Seeeduino XIAO Other Functions

  • DAC – (Pin 0) – This is the output of the Digital to Analog converter, which produces an analog output of 0 to 3.3-volts.
  • REF – (Pin 1) – This is the Reference Voltage for the 11 Analog to Digital Converters used by the analog inputs. It’s the equivalent of the AREF pin on the Arduino, and can accept a maximum of 3.3-volts.
  • SDA – (Pin 4) – The I2C Data line. Note the similar pinout to the Arduino Uno, which also used A4 as SDA.
  • SCL – (Pin 5) – The I2C Clock line. Again this is the same pinout as the Uno.
  • TX – (Pin 6) – The UART Transmit line.
  • RX – (Pin 7 ) – The UART Receive line.
  • SCK – (Pin 8) – The SPI bus clock line.
  • MISO – (Pin 9) – Master In Slave Out for the SPI bus.
  • MOSI – (Pin 10) – Master Out Slave In for the SPI bus.

Interrupts

Every pin on the Seeeduino XIAO can be used as an interrupt.

Seeeduino XIAO Interrupt Pins

As you can see from the above illustration each pin has been assigned an interrupt number. However, before working with interrupts there are a few issues you need to be aware of:

  • Most of the interrupts are “maskable”, in other words, you can programmatically choose to ignore them.
  • The interrupt on pin 4 is non-maskable, it cannot be ignored programmatically.
  • Pins 5 and 7 share the same interrupt (INT_9).

Pulse Width Modulation (PWM)

With the exception of pin 0, all of the pins on the Seeeduino XIAO support PWM.

Seeeduino XIAO PWM Pins

This makes the XIAO an ideal controller for LED’s, perfect for advanced wearable projects.

Other Features

In addition to the pinouts, we just covered there are a few other connections on the XIAO, as well as some indicator LEDs.

Top

The top of the Seeeduino XIAO has a number of prominent features.

Seeeduino XIAO Top View

The most prominent feature on the top of the XIAO is the USB-C connector. This is used for both power and data transfer.

To the left of the USB-C connector, you’ll see two pads labeled “RST”. The XIAO does not have a reset switch, instead, you need to short these two pins together to perform a reset.

You can do much more with these pins, by resetting twice in quick succession you can have the XIAO load a fresh copy of the bootloader.

To the right of the USB-C connector you’ll see four tiny surface-mount LEDs, labeled as follows:

  • L – (D13) – This is the User or Built-in LED. It is connected to data I/O pin 13, just as the built-in LED on the Arduino Uno is. This LED is yellow.
  • T – (D11) – This is the Transmit LED, it indicates transmit activity on the USB-C bus. It may also be addressed as data I/O pin 11. This LED is blue.
  • R – (D12) – This is the Receive LED, indicating activity on the USB-C bus. It may also be addressed as data I/O pin 12. This LED is also blue.
  • P – This is the power indicator, the LED is green.

Bottom

The underside of the Seeeduino XIAO also has a few extra pads for additional connections.

Seeeduino XIAO Bottom View

  • The SWCLK and SWDIO pads are the clock and data lines for the Serial Debug feature.
  • There are Reset and Ground pads, this duplicates the functionality of the pads on the top of the XIAO.
  • VIN and Ground were previously mentioned. This is another method of connecting power to the XIAO.

Working with the Seeeduino XIAO

Now that we have seen the hardware connections to the XIAO it’s time to learn how to program it. There are actually two ways to do this:

  • Using C++ and the Arduino IDE. It is also possible to use Platform IO.
  • Using CircuitPython, a Python subset enhanced for microcontrollers.

In this tutorial we will focus on using the Arduino IDE, future installments will explore other methods for programming the XIAO.

Setting up the Arduino IDE for the Seeeduino XIAO

Before we can use our Arduino IDE with the XIAO we will need to install another board manager. If you have worked with the ESP32 you will have performed a similar procedure.

Actually, there are two steps you’ll need to take – installing the new Board Manager and installing the XIAO board itself. Here is how to accomplish this.

1 – Install the Seeeduino SAMD21 Boards Manager

Seeed Studio has a board manager that works with the XIAO and with many other Seeeduino products. It can be installed as follows:

  1. Open the Arduino IDE.
  2. Click the File menu, and then click Preferences.
  3. The Preferences window will open.
  4. Locate the Additional Boards Manager URLs textbox, near the bottom of the Preferences window.

Arduino IDE Preferences

You’ll need to insert the following URL into the Additional Boards Manager URLs textbox:

https://files.seeedstudio.com/arduino/package_seeeduino_boards_index.json

  • If the Additional Boards Manager URLs textbox is empty then simply paste the above URL into the textbox.
  • If the Additional Boards Manager URLs textbox already has an entry then click on the button to the right of the textbox. This will open up a dialog box which will allow you to add additional board managers. Paste the above link into this box, below the other entry or entries. Click the modal boxes OK button when done.

Arduino IDE Additional Boards Manager Dialog Box

Now you can click the OK button to accept the new entry and close the Preferences window. And you are now ready for the next step.

2 – Install the XIAO Board

Now that the new Boards Manager has been installed into your Arduino IDE you can perform the final step – installing the Seeeduino XIAO board itself.

  1. Open the Arduino IDE (you probably still have it open, that’s fine).
  2. Open the Tools item from the top menu and select Boards Manager.
  3. The Boards Manager window will open.

Arduino IDE Boards Manager

  1. In the filter textbox type “seeeduino xiao”
  2. The Seeed SAMD Boards package will be displayed
  3. Click the Install button to install the package. Be patient, as it can take a while!
  4. Click the Close button when you are done.

Arduino IDE Boards Manager XIAO Board

Once you have done this you should now be able to select Seeeduino XIAO from the list of Seeed SAMD Boards.

Hooking up the Seeeduino XIAO

The Seeeduino XIAO uses a USB-C connector for both power and data, so you will need a USB-C cable to connect it to your computer.

But you should be aware that not all USB-C cables will work, as many of these cables are exclusively for delivering power and won’t carry data.

A simple way to see if your USB-C cable is suitable is just to connect it up and then observe the ports listed in the Arduino IDE. The port connected to the XIAO will actually display “Seeeduino XIAO” within its description. If you don’t see that then your cable is not suitable.

Seeeduino XIAO Blink

One simple method of ensuring that you have the correct cable is to use a microUSB to USB-C adapter. This is the method I employed, and it works very well. Otherwise, you’ll need to look for a USB-C cable that is designed for both data and power.

Hello World

Now that you have your XIAO connected and your Arduino IDE modified all that is left to do is to test out the installation to ensure that everything is OK.

The easiest way to do this is to run the Blink sketch, the “Hello World” sketch in the land of Arduino!

The XIAO has a yellow LED labeled “L” beside the USB-C connector, and it is connected to pin 13 just like the built-in LED on the Arduino Uno. So the Blink sketch should run unmodified.

However, like many Arduino-compatible boards, the XIAO already comes from the factory with the Blink sketch installed. Powering up the device should result in the yellow “L” LED flashing at a rate of one second on, one second off. So uploading the Blink sketch as it is doesn’t really prove anything.

So before uploading I would suggest modifying the Blink sketch to increase the delay time in milliseconds (current value = 1000) to a different value, either 500 for a “fast blink” or 2000 for a slower one. This way the effect of loading the sketch will be more obvious.

Working with the XIAO is identical to working with the Arduino, at least as far as uploading sketches is concerned. Unlike many ESP32 models, there is no need for any action on the XIAO after the program compiles. You simply wait until you receive the message that the sketch has uploaded, just like the Arduino.

You might notice that the XIAO sketches take a bit longer to compile than the same sketch compiling for an Arduino, this is typical of external Boards Managers on the Arduino IDE.

Experiment a bit with the Blink sketch, you can also try a few of the other Arduino examples. Try running the Fade sketch after changing the pin number to 13 and see how it works!

Once you have satisfied yourself that you are able to load and run sketches on the Seeeduino XIAO then it’s time to move on and explore this microcontroller further.

Running Arduino Code on the Seeeduino XIAO

The Seeeduino XIAO has many similar features to the Arduino Uno, and a lot of the code written for the Uno (and other Arduino AVR boards) can run unmodified on the XIAO.

There are, however, a few differences – some of them subtle, some of them not so subtle!

A good way to explore the similarities and differences is to run some simple code to see how the XIAO reacts. So let’s do that!

Test Hookup

We are going to hook up a few simple components to our XIAO and run a few basic sketches.

XIAO Test Hookup

This hookup will allow us to test some of the features of the XIAO, as well as expose a few of the differences between it and the Arduino. We’ll do that by running some very simple code and comparing it to the equivalent code on an Arduino.

Test Sketch 1 – Analog Input

Our first sketch tests the analog input function, using the XIAO’s 12-bit A/D converter.

This is an extremely simple sketch that simply reads the value from the potentiometer attached to analog input A2 and displays that value on the serial monitor.

We start by defining the analog input pi we are using, of course, you could use any of the 11 available analog inputs. I chose to use input A2. We also define an integer variable to hold the value read from the analog port.

The Setup is where we see things are a bit different from your typical Arduino sketch.

We have a statement in the Setup that sets the resolution of the A/D converter, it reads analogReadResolution(12);. This tells the XIAO that we want to use 12-bit resolution.

Without the above statement, the resolution will default to 10-bits, the same resolution as the Arduino has. I suspect this is designed like this to maintain backward compatibility with Arduino code.

The next difference is in the way we are setting up our serial monitor.

You’ll notice that we use the statement SerialUSB.begin(9600), instead of the more common Serial.begin(9600) that we would expect to see in our Arduino code.

SerialUSB is used with boards based upon the SAMD21 like the XIAO. It allows access to the native USB port on the microcontroller. And the baud rate of 9600 is just a place filler, in actual fact there is no speed setting but the Arduino compiler will produce an error if it doesn’t have a value here.

The Loop is pretty well what you would expect, we read the value from the analog port and assign it to our variable, then we send it to the serial monitor. After a short delay, we do it all over again.

Seeeduino XIAO Analog Input Test

Load the sketch onto your XIAO. If you experience difficulties (and I did repeatedly) you can resolve most of them by resetting the XIAO before uploading, you do that by shorting the two RST pads on the top of the board.

Once you have the sketch loaded on the XIAO open up the serial monitor and observe the results. Turning the potentiometer should produce results ranging from 0 to 4095, as we have set the A/D converter to 12-bits.

You can experiment with the analogReadResolution function and set it to different values to see the result. If set to 10 (or if the statement is eliminated) the output will range from 0 to 1023.

Test Sketch 2 – Digital I/O & Builtin LED

Here is another extremely simple sketch that we’ll be using to illustrate the differences between the Seeeduino XIAO and the Arduino Uno (and other Arduino AVR boards).

In this sketch, we are going to read the value of the pushbutton we have connected to pin 7 and will then write that value to both the LED on pin 9 and the built-in LED (the yellow one on the XIAO).

We start by defining constants to represent the pins that the pushbutton and LED are connected to. We also define a boolean that represents the current button state.

In the Setup, we use the pinMode function to set the pushbutton as an input and the two LEDs as outputs. Note that we invoke the XIAOs internal pullup resistor on the pushbutton input.

We also set up the SerialUSB port as we did in the previous sketch, again the “9600” is just really a placeholder to satisfy the Arduino IDE compiler.

In the Loop the buttonState variable is set either HIGH or LOW based upon the state of the pushbutton – if the button is pressed the input is LOW, otherwise, the internal pullup resistor keeps it high.

We then print the buttonState to the serial monitor and also use it to write to the two LEDs.

So far this probably seems pretty pointless, but when you run the sketch you’ll see why I added both LEDs.

Seeeduino XIAO digital I/O tests

Run the sketch and observe both LEDs. You will observe the following:

  • When the pushbutton has not been pressed the LED on pin 7 will be illuminated. The built-in LED, however, will be off. In this case, the output of the pushbutton is HIGH.
  • Press the pushbutton and the LED will extinguish. The built-in LED, on the other hand, will be illuminated. In this case, the output of the pushbutton is LOW.

So what we have observed is that the Builtin LED on the XIAO operates inversely from the Builtin LED on the Arduino AVR boards. It illuminates when its input is LOW and is off when it is HIGH.

If you’re designing a sketch that uses the built-in LED this is something that you’ll need to know!

BTW, the two blue LEDs (T and R) also exhibit the same behavior.

Test Sketch 3 – Analog Output

In this experiment, we will use a feature that is not present on the ATMEGA328P-based Arduino AVR boards, the analog output on pin A0.

The sketch I’m using, which is a modified version of a sample provided by Seeedstudio, uses both the analog output and one of the analog inputs. It produces an approximation of a sine wave on the output and then reads it back on the input. The result can be displayed on the Arduino IDE serial plotter.

We start by defining the pins we will be using for both the analog (DAC) output and analog (ADC) input. If you wish you can move the analog input to another pin, but only pin A0 can be used as an analog output.

Next, we define a couple of floats, one that represents the output signal and another to represent an increment. We will change the level of the output signal on each increment to simulate a sine wave.

In the Setup, we are introduced to another new function, the analogWriteResolution function. As with the analogReadResolution function, this sets the DAC resolution to 10-bits, which is the maximum value for the XIAO DAC.

Now let’s move into the Loop.

Our DAC is a 10-bit unit, so we are going to divide our output into 1024 different levels from 0 to 1023. We establish the half-way point at 511.5 (1023 / 2), as our output cannot go below 0-volts.

The output value is then equal to our offset, plus the offset multiplied by the sine of the output value variable, which starts at zero. This value is assigned to the dacVoltage variable. We then increment the value by the amount we defined earlier.

The dacVoltage output is then written to the DAC using the analogWrite function, which many Arduino users will recognize as the same function we use for PWM output. When applied to the DAC this results in a different output voltage, instead of a different pulse width.

Now we read the voltage on our analog input, which of course is coming from our DAC. We do a bit of math to the results to read the actual voltage – 3.3 is the maximum voltage on the ADC and 4096.0 is the divisor, as this is a 12-bit ADC.

We then send this to the SerialUSB output, and we will use the serial plotter to display it. Of course, you could also display the output on the serial monitor, but it would just be a series of incrementing values and wouldn’t make much sense.

A delay at the end can be adjusted to set the output frequency.

Load the sketch onto your XIAO and then open the Serial Plotter. You should observe a crude approximation of a sine wave.

Seeeduino XIAO with Arduino Libraries Demo

We’ll finish off our introduction to the Seeeduino XIAO by running a sketch that uses libraries. As a bonus, we will also use an I2C device with our XIAO.

We are going to make use of the AM2320 I2C Temperature and Humidity sensor. We have used this device in other projects, physically it looks a lot like a DHT11/DHT22 sensor but this device uses the I2C bus.

I selected this device for the demo as it works with both 3.3-volt and 5-volt logic, an important consideration when using a 3.3-volt controller like the XIAO.

Hookup is very simple:

XIAO AM2320 Hookup

The two pull-up resistor values are not critical, you can use any value from 2.2k to about 10k. I used 4.7k resistors in my hookup.

AM2320 Libraries

We are going to be using a library from Adafruit to work with the AM2320. This library also requires a second Adafruit library to function.

The second library is the Adafruit Universal Sensor library. This is a sort of “master” library that contains many common functions and methods for working with a variety of Adafruit sensors. The Adafruit AM2320 library requires this library to function.

Here is how to go about installing these libraries:

  • Open your Arduino IDE (you probably still have it open from the last experiment).
  • Select the Sketch menu item from the top menu bar.
  • Select Include Library. A sub-menu will appear.
  • Choose Manage Libraries. The Library Manager window will open.
  • In the filter box type “AM2320”. The application is dynamic so there is no need to press enter.
  • Look for the Adafruit AM2320 Sensor Library in the results.
  • Hover to the right side of the listing to expose the Install button and click it.
  • If you already have the Adafruit Unified Sensor library installed then the installation of the AM2320 library will proceed.
  • If you don’t have the Adafruit Universal Sensor Library installed you’ll be prompted to install it along with the AM2320 Library. Choose this option and both libraries will be installed.
  • Close the Library Manager.

Now that we have our library installed we can test out our sensor.

AM2320 Test Sketch

We will be saving ourselves some typing (or cutting and pasting) by making use of the sample sketch included with the AM2320 library.

Here is how to load the sketch:

  • In the Arduino IDE click the File menu item on the top menu.
  • Scroll down to Examples. A sub-menu will appear.
  • Scroll down to the Examples from Custom Libraries and look for the Adafruit AM2320 Sensor Library. Click on it to remain in place.
  • There is only one example in here, called basic_AM2320. Select this, and the sketch will open.

The sketch is very simple.

It starts by including both the Adafruit_Sensor and the Adafruit_AM2320 libraries. After that an object called am2320 is defined.

In the setup, the Serial port is opened at 9600bps. Note that we are using the Serial and not SerialUSB function, this also works with the Seeeduino XIAO. In this instance, it is important to set the speed of the Serial Monitor to match.

We also initialize the AM2320, and then move into the Loop.

The Loop is pretty simple, as all the ”heavy lifting” is performed by the libraries. We just call the readTemperature and readHumidity methods within a serial print statement, resulting in the temperature and humidity being displayed on the serial monitor.

A two-second delay is added at the end of the loop to allow the sensor to stabilize, and then everything repeats.

Upload the sketch to the XIAO and open the Serial Monitor at 9600bps. You should observe a reading of both temperature and humidity every two seconds.

Seeeduino XIAO AM2320 Demo

This is another very simple example, but it shows how Arduino libraries and Arduino code can be ported to the Seeeduino XIAO without any modifications. You’ll find thousands of Arduino sketches that can be used directly like this.

Conclusion

The Seeeduino XIAO packs a lot of power into a very tiny package. Its low cost makes it ideal for a variety of hobbyist projects, and the ability to reuse old Arduino code makes it great for rapid application development.

You’ll be seeing more of the XIAO here in the DroneBot Workshop, so stay tuned!

 

Parts List

Here are some components that you might need to complete the experiments in this article. Please note that some of these links may be affiliate links, and the DroneBot Workshop may receive a commission on your purchases. This does not increase the cost to you and is a method of supporting this ad-free website.

COMING SOON!

 

Resources

Seeeduino XIAO Wiki – Seeed Studio’s wiki for the Seeeduino XIAO.

Overview of the XIAO – Excellent blog that really dissects the Seeeduino XIAO.

Code used in this article – A ZIP file containing the sketches I used with the Seeeduino XIAO.

Seeeduino XIAO Resources Roundup – From the Seeed Studio blog.

 

Meet the Seeeduino XIAO
Summary
Meet the Seeeduino XIAO
Article Name
Meet the Seeeduino XIAO
Description
The Seeeduino XIAO is a tiny 32-bit Arduino-compatible microcontroller that packs a lot of power into a 5-dollar package. Today we will learn how to use the XIAO with the Arduino IDE.
Author
Publisher Name
Dronebot Workshop
Publisher Logo
Subscribe
Notify of

37 Comments
Oldest
Newest
Inline Feedbacks
View all comments
Mike
3 years ago

Hi, have you managed to get this into deep sleep? I’ve been struggling with it and it does rather defeat the point of the XIAO if you can’t do that. Thanks, Mike

2 years ago
Reply to  Mike

Hello, did you get any results on low power consumption ?

V x
2 years ago
Reply to  Mike

You can use the Arduino low power library. The power consumption for sleep and deep sleep for the Xiao is the same due to how they implement the sleep function.

Venkata Subramanian
3 years ago

Absolutely awesome step by step explanations and love your Youtube videos and now exploring your website. Any amount of well wishes and thanks are not sufficient for your exemplary efforts to share your wisdom.

Vesa
3 years ago

Hi, and thanks for your very educational and understandable videos!
One thing what I really would like to see, is how to send and receive SCPI-commands via GPIB-bus to measurement devices like multimeters, oscilloscopes, spectrum analyzers, signal generators and so on.. with Arduino or Raspberry PI.
This could be a whole different video series but one could always suggest 🙂
B.R::
-Vesa from Finland and keep up the good work!

Mr Robin Mitchell
3 years ago

Great tutorial, key details, as ever, now I can use the full 12 bit A2D capability. I’ve been blown away by the ‘Little’ XIAO and many thanks to SEEED, et al for creating a so far bug free Arduino IDE XIAO library.

  1. Yet to find out just how low I can get the standby power consumption down to ?
  2. Not sure that driving a red LED (1.7v) directly from 3v3 is good practice or safe for the device?
V x
2 years ago

I got about 1.5mA from deep sleep, and a lower 0.5mA if I desolder the power led.
The pins are good for 7mA, so not recommending that. You might damage the pin in the long run

Joseph Joosten
3 years ago

I loaded the XIAO analog output test and the result was a perfect sine wave between 0 and 3,3 Volt
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAvQAAAIeCAYAAADUA5vyAAAgAElEQVR4Ae29Tawt13mmdwCaULNtdmJ0zBYUJoGDCBwYAkGoBx4wgcGJY3BgGKYMjwQPOOmmDFzDg87AA0ZwI0a7ETXTcSduubutWL5Wyy1SsluhaMMQLdPUlUSZurykKEoiefljkqIpkheixAiCsIJvn7vOWbtOVe36edeq9fNs4N69q2rVWt/3fO+qenftOnsffec733Fvvvmm+/a3v+3+7u/+zr366qvulVdecS+99JL727/9W/fiiy+6F154wT3//PPuueeec5cvX979e/bZZx3/YIAG0AAaQANoAA2gATSABvQa8J7b/Lf5cPPk5s1ffvll961vfcu99tpr7vXXX9/5+CMz87bCNlgjM++2oxXmmWeecU8//bT75je/6b7xjW+4r3/96+6pp57a/fva177m+AcDNIAG0AAaQANoAA2gATSwTgNPPvmk8/88S++5zX+bDzc/bt7cjL75dTP2djHeLsof2X9m5s+dO8c/GKABNIAG0AAaQANoAA2ggQI0YFftvak/slts7Mq8GXoeEIAABCAAAQhAAAIQgEDeBMy32100dqXebpU/sqvz5vAx9HkXjuggAAEIQAACEIAABCBgBMy32604dpu8/d3rkV2qt3txMPQIBAIQgAAEIAABCEAAAvkTMN9u99zbPfV2lf7IbrexBQx9/sUjQghAAAIQgAAEIAABCJhvf/zxx3d/KGt32hzZV+DYPTgYesQBAQhAAAIQgAAEIACB/AmYb3/sscd2t93YnTZHdpnevgYHQ59/8YgQAhCAAAQgAAEIQAAC5tu/8pWv7L5C3u60ObKb6e2m+jWG/nMvf8uF/8AMAQhAAAIQgAAEIAABCMQhYL790UcfdV/96ld3F+aP7DK9fXH9XEP/5ve/7/75oxfdf3P+j91/8ft/uPfP1tk2a8MDAhCAAAQgAAEIQAACENARMN/+5S9/2T3xxBO7H506sl+EtV+kmmPozaj/j5/8z+6//oM/cv/tRz/W+8+2WRtMva549AQBCEAAAhCAAAQgAAHz7Y888oi7dOnS7sL8kd13Y197M9XQm0H/n+77E/c//OF/dO8+//HRf9bG2mLqER4EIAABCEAAAhCAwCECR0dHbsq/Q/2k3m4xm8Eeetg2a6N6mG//0pe+tPvD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

DA Horsefarm
3 years ago

I worry about wiring the XIAO, before having the intended sketch loaded. Like now, I have some unknown software sketch loaded in the XIAO. I am now wiring the XIAO and in order to load its sketch I need to plug in the computer connected usb-C. When the power is applied, the old unknown software executes with all this new wiring, before I can load the new software. Am I just a worrywart?

Yann
3 years ago
Reply to  DA Horsefarm

Just connect the XIAO to a USB C power supply and “double” Reset the board. It will reload the Original Bootloader ! 🙂

theoristos
2 years ago
Reply to  DA Horsefarm

It looks OK, Arduino IDE do “1200bps” trick to reset board before uploading.
If old software hangs and this trick do not work, you may try “double tap reset” (faster than 0.5s between taps). It turns board to bootloader.

ps: quite good board, but it accidentally disappears from Ali vendors

MIKE FLOOD
3 years ago

Well I came to the spot that I thought inspired me to spend time with the XIAO but was frustrated by the lack of “copy and paste” to get links that let me Add the board manager and get access to get started.
The info is just the script for for the video and I can’t find anything to copy and paste. This is my first attempt to use any of the Dronebot material. I don’t want to resort to starting from scratch using Adafruit stuff.

This is an excellent documentation. I’ll start making tests now that my board arrived. Thank You!

Chuck
3 years ago

Just bought a couple of these on the back of the YouTube video, so I’m looking to work out how to get started with these. Looks interesting, but what do I know?

Yann
3 years ago

I’ve gone thru quiet a few problems (cpu not resetting and not recognized and PORT not open, etc . . . Mostly because my code wasn’t straight ! And clean; ie: compatible ! Then things started to sort themselves out 🙂
Your insight is always invaluable. Thanks

Barry Law
3 years ago

I am unable to get on your web site. I have tried to get my password reset but have not gotten a response. Is anybody there?

Tom
3 years ago

Any idea how much current is available on the 3.3v pin?

The schematic I’ve seen lists the 5v to 3v3 voltage converter part number as XC6206. The data sheet for that part says 250mA. That seems pretty low.

Is this a case of cut-and-try, measure the max current draw, and see if it still works reliably?

ps. 1) I enjoy your videos; and 2) xiao also means small (the size of that chinese flute).

Last edited 3 years ago by Tom
theoristos
2 years ago
Reply to  Tom

Normally it is supplied from USB port, and on enumeration board demands 250mA max from host.

William Bill Clark
2 years ago

First ….. thanks for introducing me to the XIAO. Second ….. my problem. I have a need to create a multi-node mesh network to manage the assets on my model railway / roadway system (Faller car system like). The XIAO is perfect in size to fit into an HO scale transport truck. In preparation, I have created a test four node network: One XIAO, two Arduino megas and an Arduino Pro Mini all equipped with nRF24L01 radio peripherals running an RF24Mesh network. The Mini Pro is the Master node and the others are slaves. Things work really well except when… Read more »

theoristos
2 years ago

Maybe you will describe the situation broadly, making the post on https://forum.arduino.cc/

Del
1 year ago

I’m looking at this for a simular reason to yours so I’m asking have you got a control system up and running and if your willing to share your journey ?

2 years ago

A great tutorial on the xiao. Working on replacing an UNO with it.

theoristos
2 years ago
Reply to  Bob Found

Sadly, XIAO have notably fewer pins than UNO.

BuddhaChrist
1 year ago
Reply to  theoristos

Yes, but the pins are more configurable, so in some ways, you have more. I cede your point, though. I’ve had issues with this on a few projects, and was tempted to break down my interfaces between two Xiaos, but instead I grabbed a few of these off the web, and it solved my problems: 74HC4051 8 Channel Analog Multiplexer ; CD74HC4067 16 Channel Digital Analog Multiplexer; TCA9548A 8 Channel I2C IIC MultiplexerAnd here are some helpful instructions/tutorials!

2 years ago

I used a USB 3 cable and received errors on compile when plugged into a USB2 slot on my Windows computer. Plugging into a USB3 slot fixed the problem.

theoristos
2 years ago
Reply to  Bob Found

Errors on compiling or on uploading compiled sketch?
I constantly get a error from bossac uploader on every sketch upload, but verification is OK, and the work is OK too. This is a little weird.

2 years ago

Thank you for such a useful introduction to my new favorite microcontroller!

2 years ago

You mention that power can be applied to the 3.3V pin 11, but I don’t think this works. I tried it and nothing happened but if I apply 5V to pin 13 it works. Also if you look at the Seeeduino XIAO schematic there is no path to power the XIAO.

You may want to test this out yourself.

BuddhaChrist
1 year ago

Really sorry to be that (pedantic) guy, but you’ve latched onto the wrong definition of Xiao. Or, really, the right definition for the wrong word. The English representation of the Mandarin word xiao is ambiguous, as Mandarin is a tonal language, and the vowel tone used denotes entirey different words. In this case, the intended translation is xiǎo (小),  which means small or tiny, which makes a lot of sense for a microcontroller board the size of my thumbnail.

Brian
1 year ago

Thanks, DronBotWorkshop Again! The SerialUSB.begin(9600) function was what I needed to know.

Robert
1 year ago

There is a comment that reads:

REF – (Pin 1) – This is the Reference Voltage for the 11 Analog to Digital Converters used by the analog inputs. It’s the equivalent of the AREF pin on the Arduino, and can accept a maximum of 3.3-volts.

Are these internal references only? or will it accept an external reference, too (like an LM4040)? Would you be able to elaborate?

Don
1 year ago

Thanks for posting this information on the seeed xiao. I was having problems with the various arduino nano micro controllers on the market with drivers. With the Seeed xiao available my mini projects are coming back alive, All of the information you provide is perfect and if followed to the letter work. Unfortunately there are no shortcuts to programming and each step needs to be followed with precision and with your perfect presentations if followed to the letter all work. Again thanks for your efforts in bringing this technology forward.

Carlos
1 year ago

Hello Bill, have being a long time follower of your outstanding work. Your posts are a reference for many makers.

I know you have being doing more and more with the ESP32. I would personally like to get deeper into it in a more structured manner. Somehow there is no good book on the subject. Would appreciate further posts and tutorials.

thanks Bill!

Carlos
1 year ago

Just posted a general comment, realised that they meant to be regarding the above material. Seeed studios have released a tonne of new xiaos, can you review the new ones?
thx

Phinz
1 year ago

It helped me at least to communicate with the board. Thanks!!

Rich Phillips
1 year ago

I appreciate your helpful videos. I’m struggling with the Seeeduino XIAO. I’m very new to Arduino and trying to figure out the proper way to use TX and RX. The information you presentation and examples are very good. I’m sure with enough searching, I’ll get the answers I need.

Craig Austin
1 year ago

Xiao means tiny (or small) in Chinese: https://translate.google.com/;?sl=zh-TW&tl=en&text=%E5%B0%8F&op=translate