You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Im Using the modbus master library, and it's working as intended :)
But know I need to write 29 registers, and I'm using the writeMultipleRegisters function.
But there are six addresses in the midle, I do not want to change. Is it possible to just skip them:
setTranmitBuffer(0, 1); setTranmitBuffer(1, 1); // Then just skip to 7 setTranmitBuffer(7, 1); setTranmitBuffer(8, 1);
Or do I have to split my function to send the firt group, and then the second right after?
The text was updated successfully, but these errors were encountered:
Hi,
Im Using the modbus master library, and it's working as intended :)
But know I need to write 29 registers, and I'm using the writeMultipleRegisters function.
But there are six addresses in the midle, I do not want to change. Is it possible to just skip them:
setTranmitBuffer(0, 1); setTranmitBuffer(1, 1); // Then just skip to 7 setTranmitBuffer(7, 1); setTranmitBuffer(8, 1);
Or do I have to split my function to send the firt group, and then the second right after?
The text was updated successfully, but these errors were encountered: