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
The functions publish, subscribe and unsubscribe take String& as arguments, the implementation then passes those as char* (via c_str()) onwards.
In my sketch, I've removed all String instances and only use char*. Thus it would be very helpful (and straightforward to be implemented) if those three functions would be changed to use char* as arguments. To maintain compatibility, the String-versions could call the char* implementations via the same c_str() transformation.
The text was updated successfully, but these errors were encountered:
The functions publish, subscribe and unsubscribe take String& as arguments, the implementation then passes those as char* (via c_str()) onwards.
In my sketch, I've removed all String instances and only use char*. Thus it would be very helpful (and straightforward to be implemented) if those three functions would be changed to use char* as arguments. To maintain compatibility, the String-versions could call the char* implementations via the same c_str() transformation.
The text was updated successfully, but these errors were encountered: