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:
parent
d9deddf923
commit
548b5b8d51
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user