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/15 13:24] admin |
docs:blox:firmware-arduino [2024/08/19 17:38] (current) admin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======4.2 Using BLOX with the Arduino IDE ====== | + | ====== |
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. | + | |
+ | |||
+ | ---- | ||
- | =====4.2.2 Installing Arduino IDE 2===== | + | ===== 5.2.2 Installing Arduino IDE 2 ===== |
**Download Arduino IDE 2**: | **Download Arduino IDE 2**: | ||
- | Visit https:// | + | Visit [[https:// |
**Install the IDE**: | **Install the IDE**: | ||
Line 20: | Line 24: | ||
Follow the installation instructions provided on the website. Once the installation is complete, launch the Arduino IDE. | Follow the installation instructions provided on the website. Once the installation is complete, launch the Arduino IDE. | ||
- | =====4.2.3 Installing the ESP32 Cores===== | + | ---- |
+ | |||
+ | ===== 5.2.3 Installing the ESP32 Cores ===== | ||
**Open the Arduino IDE**: | **Open the Arduino IDE**: | ||
Line 30: | Line 36: | ||
In the " | In the " | ||
- | > https:// | + | > [[https:// |
- | |||
Click " | Click " | ||
Line 41: | Line 46: | ||
In the search bar, type " | In the search bar, type " | ||
- | =====4.2.4 Installing the OpenBuilds BLOX Library===== | + | ---- |
+ | |||
+ | ===== 5.2.4 Installing the OpenBuilds BLOX Library ===== | ||
**Open the Library Manager**: | **Open the Library Manager**: | ||
Go to `Sketch > Include Library > Manage Libraries`. | Go to `Sketch > Include Library > Manage Libraries`. | ||
- | |||
**Search for the BLOX Library**: | **Search for the BLOX Library**: | ||
Line 54: | Line 60: | ||
Click " | Click " | ||
- | Alternatively, | + | Alternatively, |
- | =====4.2.5 Getting Started with BLOX on Arduino IDE===== | + | ---- |
+ | |||
+ | ===== 5.2.5 Getting Started with BLOX on Arduino IDE ===== | ||
**Select the ESP32-S3 Board**: | **Select the ESP32-S3 Board**: | ||
Line 66: | Line 74: | ||
Connect the BLOX device to your computer via USB. Ensure the correct port is selected in `Tools > Port`. | Connect the BLOX device to your computer via USB. Ensure the correct port is selected in `Tools > Port`. | ||
- | Also set: | + | Also set: |
* USB CDC On Boot = Enabled | * USB CDC On Boot = Enabled | ||
Line 77: | Line 85: | ||
{{: | {{: | ||
- | =====4.2.6 Pinmap for custom firmware ===== | + | ---- |
+ | |||
+ | ===== 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 | // WS2812 LEDs | ||
- | #define LED_PIN | + | #define LED_PIN |
+ | |||
+ | // RC Servo | ||
+ | #define PIN_SERVO | ||
// Stepper 1 | // Stepper 1 | ||
- | const int DIR_1 = 8; // Stepper1 DIR | + | # |
- | const int STEP_1 | + | # |
- | const int ENABLE_1 | + | # |
- | const int FAULT_1 | + | # |
+ | // Remember to setup MCP4725 I2C DAC (Addr 0x60) to set Stepper Driver Current | ||
// Stepper 2 | // Stepper 2 | ||
- | const int DIR_2 = 12; // Stepper2 DIR | + | # |
- | const int STEP_2 | + | # |
- | const int ENABLE_2 | + | # |
- | const int FAULT_2 | + | # |
+ | // Remember to setup MCP4725 I2C DAC (Addr 0x61) to set Stepper Driver Current | ||
- | // Remember to setup 2x MCP4725 I2C DACs (Addr 0x60 and 0x61) to set Stepper Driver Current | + | // Limits Inputs |
+ | #define LIMIT_SENSOR_1 | ||
+ | #define LIMIT_SENSOR_2 | ||
// Mosfets | // Mosfets | ||
- | #define PIN_MOSFET1 41 | + | #define PIN_MOSFET1 |
- | #define PIN_MOSFET2 42 | + | #define PIN_MOSFET2 |
- | + | ||
- | // Limits Inputs | + | |
- | #define LIMIT_SENSOR_1 39 // Pin for the first limit sensor | + | |
- | #define LIMIT_SENSOR_2 40 // Pin for the second limit sensor | + | |
// Beeper | // Beeper | ||
- | #define BUZZER_PIN 7 | + | #define BUZZER_PIN |
// I2C | // I2C | ||
- | #define I2C_SDA 3 | + | #define I2C_SDA |
- | #define I2C_SCL 4 | + | #define I2C_SCL |
// SPI | // SPI | ||
- | #define SPI_MOSI 35 | + | #define SPI_MOSI |
- | #define SPI_MISO 37 | + | #define SPI_MISO |
- | #define SPI_SCK 36 | + | #define SPI_SCK |
// SD Card | // SD Card | ||
- | #define SD_CS 5 | + | #define SD_CS |
+ | |||
+ | void setCurrent(float milliAmps) { | ||
+ | // Calculate reference voltage: Convert milliAmps to mV output from DAC | ||
+ | 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, | ||
+ | |||
+ | // Your own logic here to apply the dacValue to the correct DAC to set the current | ||
+ | } | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ |