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
Not worth a pull request.... - a small point - the new user guide client creation has the line
if (pClient->connect(&device)) {
Howewver, device is a pointer, so the line should be
if (pClient->connect(device)) {
Not worth a pull request.... - a small point - the new user guide client creation has the line
if (pClient->connect(&device)) {
Howewver, device is a pointer, so the line should be
if (pClient->connect(device)) {