This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:blox:firmware-arduino [2024/08/14 20:35] admin |
docs:blox:firmware-arduino [2024/08/19 17:38] (current) admin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======4.2 Arduino IDE Setup====== | + | ====== |
The Arduino IDE provides a flexible and powerful environment for programming BLOX devices using traditional code-based methods. This guide will help you get started by installing the Arduino IDE, setting up the ESP32 cores, and adding the necessary libraries. | The Arduino IDE provides a flexible and powerful environment for programming BLOX devices using traditional code-based methods. This guide will help you get started by installing the Arduino IDE, setting up the ESP32 cores, and adding the necessary libraries. | ||
- | =====4.2.1 Requirements===== | + | ---- |
+ | |||
+ | ===== 5.2.1 Requirements ===== | ||
Before getting started, ensure that you have the following: | Before getting started, ensure that you have the following: | ||
- | - A computer running Windows, macOS, or Linux. | + | * A computer running Windows, macOS, or Linux. |
- | - An internet connection to download the necessary software and libraries. | + | |
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 5.2.2 Installing Arduino IDE 2 ===== | ||
+ | |||
+ | **Download Arduino IDE 2**: | ||
+ | |||
+ | Visit [[https:// | ||
+ | |||
+ | **Install the IDE**: | ||
+ | |||
+ | Follow the installation instructions provided on the website. Once the installation is complete, launch the Arduino IDE. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 5.2.3 Installing the ESP32 Cores ===== | ||
+ | |||
+ | **Open the Arduino IDE**: | ||
+ | |||
+ | Launch the Arduino IDE and navigate to `File > Preferences`. | ||
+ | |||
+ | **Add the ESP32 Board URL**: | ||
+ | |||
+ | In the " | ||
+ | |||
+ | > [[https:// | ||
+ | |||
+ | Click " | ||
+ | |||
+ | **Install the ESP32 Core**: | ||
+ | |||
+ | Go to `Tools > Board > Boards Manager`. | ||
+ | |||
+ | In the search bar, type " | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 5.2.4 Installing the OpenBuilds BLOX Library ===== | ||
+ | |||
+ | **Open the Library Manager**: | ||
+ | |||
+ | Go to `Sketch > Include Library > Manage Libraries`. | ||
+ | |||
+ | **Search for the BLOX Library**: | ||
+ | |||
+ | In the Library Manager, search for " | ||
+ | |||
+ | Click " | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 5.2.5 Getting Started with BLOX on Arduino IDE ===== | ||
+ | |||
+ | **Select the ESP32-S3 Board**: | ||
+ | |||
+ | Go to `Tools > Board` and select the ESP32-S3 Development board for your BLOX device. | ||
+ | |||
+ | **Connect Your BLOX Device**: | ||
+ | |||
+ | Connect the BLOX device to your computer via USB. Ensure the correct port is selected in `Tools > Port`. | ||
+ | |||
+ | Also set: | ||
+ | |||
+ | * USB CDC On Boot = Enabled | ||
+ | * Flash Size = 8MB (64Mb) | ||
+ | |||
+ | **Upload a Sketch**: | ||
+ | |||
+ | You can now write or upload a sketch to your BLOX device. Use the examples provided in the BLOX library to get started quickly. Including the OpenBuildsBLOX.h library will help you initialise all the onboard hardware with ease | ||
+ | |||
+ | {{: | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 5.2.6 Pinmap for custom firmware ===== | ||
+ | |||
+ | If you are not planning on using our library to control the onboard devices as part of your code, you can use the Pin map below to get you started with your own code | ||
+ | < | ||
+ | |||
+ | // WS2812 LEDs | ||
+ | #define LED_PIN | ||
- | =====4.2.2 Installing Arduino IDE 2===== | + | // RC Servo |
+ | #define PIN_SERVO | ||
- | 1. **Download Arduino IDE 2**: | + | // Stepper |
- | - Visit the [Arduino IDE download page](https: | + | #define DIR_1 8 |
+ | #define STEP_1 | ||
+ | #define ENABLE_1 | ||
+ | #define FAULT_1 | ||
+ | // Remember to setup MCP4725 I2C DAC (Addr 0x60) to set Stepper Driver Current | ||
- | 2. **Install the IDE**: | + | // Stepper |
- | - Follow the installation instructions provided on the website. Once the installation is complete, launch the Arduino IDE. | + | #define DIR_2 12 |
+ | #define STEP_2 | ||
+ | #define ENABLE_2 | ||
+ | #define FAULT_2 | ||
+ | // Remember to setup MCP4725 I2C DAC (Addr 0x61) to set Stepper Driver Current | ||
- | =====4.2.3 Installing the ESP32 Cores===== | + | // Limits Inputs |
+ | #define LIMIT_SENSOR_1 | ||
+ | #define LIMIT_SENSOR_2 | ||
- | 1. **Open the Arduino IDE**: | + | // Mosfets |
- | - Launch the Arduino IDE and navigate to `File > Preferences`. | + | #define PIN_MOSFET1 |
+ | #define PIN_MOSFET2 | ||
- | 2. **Add the ESP32 Board URL**: | + | // Beeper |
- | - In the " | + | #define BUZZER_PIN |
- | ``` | + | |
- | | + | |
- | ``` | + | |
- | - Click " | + | |
- | 3. **Install the ESP32 Core**: | + | // I2C |
- | - Go to `Tools > Board > Boards Manager`. | + | #define I2C_SDA |
- | - In the search bar, type " | + | #define I2C_SCL |
- | =====4.2.4 Installing the OpenBuilds BLOX Library===== | + | // SPI |
+ | #define SPI_MOSI | ||
+ | #define SPI_MISO | ||
+ | #define SPI_SCK | ||
- | 1. **Open the Library Manager**: | + | // SD Card |
- | - Go to `Sketch > Include Library > Manage Libraries`. | + | #define SD_CS 5 |
- | 2. **Search for the BLOX Library**: | + | void setCurrent(float milliAmps) { |
- | - In the Library Manager, search for " | + | // Calculate reference voltage: Convert milliAmps to mV output from DAC |
- | - Click " | + | float millivolt = milliAmps / 5.0 / 0.22; |
- | | + | // Map the millivolt value to the DAC range (0 to 3300 mV to 0 to 4096) |
+ | int dacValue = map(millivolt, | ||
- | =====4.2.5 Getting Started with BLOX on Arduino IDE===== | + | // Your own logic here to apply the dacValue to the correct DAC to set the current |
+ | } | ||
- | 1. **Select the ESP32 Board**: | + | </code> |
- | - Go to `Tools | + | |
- | 2. **Connect Your BLOX Device**: | + | ---- |
- | - Connect the BLOX device to your computer via USB. Ensure the correct port is selected in `Tools > Port`. | + | |
- | 3. **Upload a Sketch**: | ||
- | - You can now write or upload a sketch to your BLOX device. Use the examples provided in the BLOX library to get started quickly. | ||