Guillaume Coguiec (Yugo)
Results
1
comments of
Guillaume Coguiec (Yugo)
If we're talking about the LED on the GPIO7 pin (ESP32-C3-DevKit-RUST-1 board), you can try: ```rust const LED_PIN: i32 = 7; unsafe { gpio_reset_pin(LED_PIN); assert_eq!(gpio_set_direction(LED_PIN, gpio_mode_t_GPIO_MODE_OUTPUT), ESP_OK); assert_eq!(gpio_set_level(LED_PIN, 1), ESP_OK);...