The following code is unnecessary in every example.
// If the codec was already powered up (due to reboot) power it down first
codecControl.disable();
delay(100);
codecControl.enable();
delay(100);
enable() already calls disable() at the start (and disable() calls delay(100)).