I have just gone through the process of trying to use XCTU to control an IO pin set to output on a SX 868 Digimesh XBee.
I sent the AT command in API mode:
D4 4 (= set low) and
D4 5 (=set Hi)
using the console.
It worked using the XCTU config tool but not by manually creating a packet.
I figured out the problem by looking at the data packet exchange for the config tool in the console.
The problem was that the command “D4” is ASCII and the parameter “4” needs to be hex value “04”. This is not mentioned in the manual. If it is, I can’t find it.
The same is likely to be true for similar commands.
Dazz