Skip to content

Commit eee466d

Browse files
committed
Fix terrible bug in Series 1 TX example from 2009. It was using Series2 methods
1 parent a2556a0 commit eee466d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Series1_Tx/Series1_Tx.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void loop() {
9191

9292
// should be a znet tx status
9393
if (xbee.getResponse().getApiId() == TX_STATUS_RESPONSE) {
94-
xbee.getResponse().getZBTxStatusResponse(txStatus);
94+
xbee.getResponse().getTxStatusResponse(txStatus);
9595

9696
// get the delivery status, the fifth byte
9797
if (txStatus.getStatus() == SUCCESS) {

0 commit comments

Comments
 (0)