Axiometa Sparklet
User Guide
This tutorial will guide you through all steps of setting up and using Axiometa Sparklet
Setting Up
Code Example
Pinout Map
Schematics, 3D Models
Setting Up
Setting up the enviroment
PREREQUISITE!
- If you have not set up the Arduino IDE yet, check this tutorial for help.
- To install CP2102 Drivers, check this tutorial for help.
1
Unbox the Spark
2
Install CP2102 Drivers
3
Open Arduino IDE
4
Top Left, click "Select Board"
5
Connect Spark 1S to the PC
6
Select the COM port that has appeared
7
Search and Choose Arduino Nano, Click OK
8
Copy and paste a snippet from "Code Examples" Tab
9
Click Upload
10
Observe the board!
Code Example
Code copied!
/*
Example Code for Axiometa Sparklet
===================================
Description: This example demonstrates the basic functionality of the Axiometa Sparklet microcontroller,
highlighting the control of the built-in LED with a simple blink pattern.
Features:
– Turns the built-in LED on and off in a 1-second interval.
– Serves as an introductory example to familiarize users with the Axiometa Spark 1S.
Pin Configuration:
– LED_BUILTIN (Pin 13): Built-in LED connected to digital pin 13.
Usage:
– Upload the code to the Axiometa Sparklet using the Arduino IDE or a compatible environment.
– Observe the built-in LED blinking at 1-second intervals.
Author: Povilas Dumcius
Last Updated: 2024 January 11th
License: Open-source, for educational and prototyping purposes.
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Pinout Map
Schematics, 3D Models
User Guide
Schematics, 3D Model
User Guide
Start Connecting
Make sure your microcontroller is prepared for uploading code
Explore the peripherals section for instructions and code examples.
Schematics, 3D Model