Hotfix: swap joystick X/Y pins, log 5V regulator start

jsut re-wired the pcb.
apparently joystick was wired wrong previously
This commit is contained in:
jonny_l480 2023-09-11 21:24:38 +02:00
parent d9deddf923
commit 548b5b8d51
2 changed files with 3 additions and 2 deletions

View File

@ -93,8 +93,8 @@ httpJoystick_config_t configHttpJoystickMain{
//======= joystick configuration =======
//======================================
joystick_config_t configJoystick = {
.adc_x = ADC1_CHANNEL_3, //GPIO39
.adc_y = ADC1_CHANNEL_0, //GPIO36
.adc_x = ADC1_CHANNEL_0, //GPIO36
.adc_y = ADC1_CHANNEL_3, //GPIO39
//percentage of joystick range the coordinate of the axis snaps to 0 (0-100)
.tolerance_zeroX_per = 7, //6
.tolerance_zeroY_per = 10, //7

View File

@ -167,6 +167,7 @@ void sendByte(char data){
//=================================
extern "C" void app_main(void) {
//enable 5V volate regulator
ESP_LOGW(TAG, "enabling 5V regulator...");
gpio_pad_select_gpio(GPIO_NUM_17);
gpio_set_direction(GPIO_NUM_17, GPIO_MODE_OUTPUT);
gpio_set_level(GPIO_NUM_17, 1);