updated pictures file names

This commit is contained in:
Ghassan Yusuf 2025-06-14 22:16:46 +03:00
parent 3c828920de
commit ca9c816bb0
3 changed files with 28 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

@ -14,13 +14,33 @@
![ESP32S3 Pinout](./images/esp32s3_pinout.png "Text to show on mouseover") ![ESP32S3 Pinout](./images/esp32s3_pinout.png "Text to show on mouseover")
``` ```
// Red Joystic // Red Joystic Public - Slave Address
DIV_ADD = 0x10 #define DIV_ADD 0x10
SDA_PIN = 5
SCL_PIN = 4 // Blue Joystic Public - Slave Address
#define DIV_ADD 0x20
// PUBLIC -> I2C PINS
#define SDA_PIN 5
#define SCL_PIN 4
// LOCAL -> I2C PINS
#define SDA_PIN 5
#define SCL_PIN 4
// JOYSTIC
#define X 1
#define Y 2
#define B 3
// FAST LED
#define STRIP_PIN 8
#define STRIP_LEDS 16
// DOTMATRIC
#define DMX 8
#define DMY 8
#define DIN 10
#define CIN 9
// Blue Joystic
DIV_ADD = 0x20
SDA_PIN = 5
SCL_PIN = 4
``` ```