Hello! I have problem with Joystick Hat , this one "https://m5stack.com/collections/m5-hat/products/m5stickc-joystick-hat"
Its working on my M5StickC but i can't make it work on M5StickC Plus. Here is my code:
#include <M5StickCPlus.h>
#include "Wire.h"
#define JOY_ADDR 0x38
void setup() {
M5.Lcd.begin();
//M5.Lcd.clear();
//disable the speak noise
//dacWrite(25, 0);
Wire.begin(0,26);
M5.Lcd.setRotation(1);
M5.Lcd.drawString("bok",0,0,2);
}
uint8_t x_data;
uint8_t y_data;
uint8_t button_data;
char data[100];
void loop() {
// put your main code here, to run repeatedly:
Wire.requestFrom(JOY_ADDR,3);
if (Wire.available()) {
x_data = Wire.read();
y_data = Wire.read();
button_data = Wire.read();
sprintf(data, "x:%d y:%d button:%d\n", x_data, y_data, button_data);
M5.Lcd.setCursor(1, 30, 2);
M5.Lcd.printf("x:%04d y:%04d button:%d\n", x_data, y_data, button_data);
}
delay(200);
}