We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c672d commit 71f3856Copy full SHA for 71f3856
examples/gpio/esp32spi_gpio.py
@@ -94,7 +94,7 @@ def esp_init_pin_modes(din, dout):
94
esp_init_pin_modes(ESP_D_R_PIN, ESP_D_W_PIN)
95
esp_d_r_val = esp.set_digital_read(ESP_D_R_PIN)
96
print("--> ESP read:", esp_d_r_val)
97
- except (OSError, AssertionError) as e:
+ except OSError as e:
98
print("ESP32 Error", e)
99
esp_reset_all()
100
@@ -121,7 +121,7 @@ def esp_init_pin_modes(din, dout):
121
"v)",
122
sep="",
123
)
124
125
126
127
0 commit comments