From ed8684dfc788492941666574852f8e3de13c3bf7 Mon Sep 17 00:00:00 2001 From: Martin Williams Date: Wed, 18 Oct 2023 16:34:29 +0100 Subject: [PATCH] Fix DAL function names (#394) --- hardware/edgeconnector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/edgeconnector.md b/hardware/edgeconnector.md index 3d67564..c0896e3 100644 --- a/hardware/edgeconnector.md +++ b/hardware/edgeconnector.md @@ -167,7 +167,7 @@ Pins that are marked with brackets around functions, require the default functio ### pins: P3, P4, P6, P7, P9, P10 -These pins are coupled to the LED matrix display, and also its associated ambient light sensing mode. To disable the display driver feature (which will automatically disable the light sensing feature) call the DAL function `display.enable(false)`. To turn the display driver back on again later, call the DAL function `display.enable(true)`. +These pins are coupled to the LED matrix display, and also its associated ambient light sensing mode. To disable the display driver feature (which will automatically disable the light sensing feature) call the DAL function `display.disable()`. To turn the display driver back on again later, call the DAL function `display.enable()`. Note also that the LED 3x9 matrix connects LEDs with associated resistors across these pins, so you should take that into account when designing circuits to use these pins for other purposes.