Blocks not snapping

For other blocks it snapped together but only these both aren't snapping with each other.
image
image

The two types of blocks are different use a "evaluate but ingnore result block"
Screenshot 2025-11-21 9.40.18 AM
Or make your connection a variable, This would booth connect it and set the variable to the address
Screenshot 2025-11-21 9.43.32 AM
.

The value returned by that block tells you if the connection attempt succeeded.

So you would typically use it in an if/then block, announcing success or failure of the connection attempt.

Thank you so much. It worked.

1 Like

But ABG was correct, it does not retern the address it returns connection success True or False.

The address is of esp32.

Actually you do not wamt to ignore the result of the Connect method, because

So usually you would use an if statement like this

If Connect ...
Then connected
Else not connected

Taifun

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.