General Purpose Sequencer commands not responding [solved]

Hi,
After I made a two days research on this forum I finally decided to ask questions.
I programmed the EEPROM of SSC-32 using EEW and EER commands. I can read it correctly. I use the latest firmware 2.07Alfa1A-EGP and a microchip 24LC256.

I can control servos using Lynxterm and to write to the EEPROM as-well. The reading I do with other terminal program that converts to decimal the returns of the EER command.

The problem is that when I send command: “PL 0 SQ 1” and noting happens. :neutral_face:

I use two servos on 30 and 31 channel.
The program (identical with the one from the manual of GPSequencer)in EEPROM is:
EEW -1,1,0
EEW -256,1,2,3
EEW -259,30,255,255,31,255,255
EEW -265,9,96,5,220,5,220,2,88,4,76,5,220,4,176,4,76,8,52,9,96

If someone with experience can take a look and find what I’m doing wrong I will appreciate.
Thank you for reading this.

Do you have an carriage return () after your “PL 0 SQ 1” command? Can you do “QPL 0” to see if the player is currently playing and what it is doing?

After “PL 0 SQ 1” (with no carriage return), I send “QPL 0” and I receive “255 0 0 0”

How about “PL 0 SQ 1” with a carriage return?

Sorry. I misunderstood the carriage return. Yes, with .

It’s working :mrgreen:
I found the problem 8) :
EEW -1,1,0 ; must be 0 (not 1) (or 2, 4, 6 etc) ***(from the manual)
EEW -256,1,2,3 ; because of line above the sequence is number 0 (not 1)
EEW -259,30,255,255,31,255,255
EEW -265,9,96,5,220,5,220,2,88,4,76,5,220,4,176,4,76,8,52,9,96

***:
@0:1 = pointer to sequence 0 (high byte in address 0, low byte in address 1)
@2:3 = pointer to sequence 1
@4:5 = pointer to sequence 2
@6:7 = pointer to sequence 3
Etc., up to sequence 127

Thanks jarcand for your time :slight_smile:

Good catch!