Arduino Lightsaber for/with LED string blade

PedroRS:
I created inside DFPlayer_LSOS library a function to call this serial command (0x11 0x00) and executing it like this, the issue is solved...:

Hey Pedro!

I'm having the same issue, after i bought a DFplayer from Ali Express. I don't have the requisite knowledge to modify the library correctly.

I've tried adding the following code to the DFPlayer.h in the DFPlayer_LSOS library:

inline void disableAllLoops() {
		setSendBuffer(0x11,0x00);
	}

I then added your amendment to the FX-SaberOS script.

Would it be possible for you to provide more details so i could reproduce your fix please? :slight_smile:

EDIT: I forgot to add the send(); command to the above. So i added the following and it now works!!

inline void disableAllLoops() {
		setSendBuffer(0x11,0x00);
		send();
	}