Hi Jim,
There's a newer available release for the Out Of Box Demo for the Rapid IOT Kit. It can be imported and compiled through the Rapid IOT Studio Online IDE.
Currently there's a known issue with the Information page on this release, as a temporary workaround, the GetVersionFunc_trigger can be changed to the following:
ATMO_Status_t GetVersionFunc_trigger(ATMO_Value_t *in, ATMO_Value_t *out) {
char versionStr[64];
ATMO_BLE_MacAddress_t macAddr;
ATMO_BLE_GetMacAddress(0, &macAddr);
sprintf(versionStr, "Ver: %s\nBranch: %s\nMac: %02X:%02X:%02X:%02X:%02X:%02X",
"VERSION", ATMO_GLOBALS_GIT_BRANCH, macAddr.data[0],macAddr.data[1],macAddr.data[2],
macAddr.data[3],macAddr.data[4],macAddr.data[5]);
ATMO_CreateValueString(out, versionStr);
return ATMO_Status_Success;
}
By using the integrated code editor in Rapid IOT Studio.
Please let me know if you need any more information.
Best regards,
Sebastian