Topic: Compile Error 'String' to non-scalar type 'std::string'
This is the error message I get when I compile.
Changed std::string to String and it compiled.
Not sure that was the correct fix.
What does this error mean?
c:\Users\onedn\Documents\Arduino\libraries\RemoteXY\src/RemoteXYStream_BLEDevice.h: In member function 'virtual void CRemoteXYStream_BLEDevice::onWrite(BLECharacteristic*)':
c:\Users\onedn\Documents\Arduino\libraries\RemoteXY\src/RemoteXYStream_BLEDevice.h:111:56: error: conversion from 'String' to non-scalar type 'std::string' {aka 'std::__cxx11::basic_string<char>'} requested
111 | std::string rxValue = pCharacteristic->getValue();