CHDK Wiki
Advertisement

Canon basic code to blink LEDs directly

Digic 6[]

Other known Digic 6 LED addresses include 0xd20b0884 and 0xd20b0888

' blink a digic 6 led
private sub Initialize()
	System.Create()
	For count = 1 To 100
		Poke32(0xd20b0994,0x4d0002)
		Wait(250)
		Poke32(0xd20b0994,0x4d0003)
		Wait(250)
	Next
end sub
Advertisement