Axiometa Core WiFI
User Guide
This tutorial will guide you through all steps of setting up and using Axiometa Core WiFi
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.
- Link for Step 5: https://raw.githubusercontent.com/axiometa/axiometa_boards_firmware/refs/heads/main/package_axiometa_index.json
1
Unbox the Core WiFi
2
Open Arduino IDE
3
Click File > Preferences
4
Find "Additional boards manager URLs"
5
Copy the link above and paste it, click ok
6
Top Left, click "Select Board"
7
Connect Core WiFi to the PC
8
Select the COM port that has appeared
9
Search and Choose ESP32S3 Dev Module, Click OK
10
Copy and paste a snippet from "Code Examples" Tab
11
Click Upload
12
Observe the board!
Code Example
Code copied!
/*
Example Code for Axiometa Core WiFi
===================================
Description: This example demonstrates the basic functionality of the Axiometa Core WiFi 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 Core WiFi.
Pin Configuration:
– Digital 13 (Pin 13): Built-in LED connected to digital pin 13.
Usage:
– Upload the code to the Axiometa Core WiFi using the Arduino IDE or a compatible environment.
– Observe the built-in LED blinking at 1-second intervals.
Author: Povilas Dumcius
Last Updated: 2025 January 9th
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 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(13, 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