eabminime
eabminime

Reputation: 3

Ardino-Nano-BLE-Sense "Send Data With Sound" Chirp Project Issue

I am having some issues with the Send Data with Sound Project on Arduino. I have my Arduino nano BLE sense, ChirpSDK by Asio Ltd Version 3.4.0 installed, I put in the CHIRP_APP_KEY, CHIRP_APP_SECRET, CHIRP_APP_CONFIG from the chirp website, and I also have the Arduino nano BLE board selected when uploading the code. But for some reason I keep getting this error below:

ChirpColor:22:10: error: chirp_connect.h: No such file or directory

 #include "chirp_connect.h"

          ^~~~~~~~~~~~~~~~~

compilation terminated.

exit status 1
chirp_connect.h: No such file or directory

Any help would be very much appreciated, thanks.

Upvotes: 0

Views: 231

Answers (1)

joextodd
joextodd

Reputation: 744

The SDK functions have been renamed in the latest release. So connect is replaced with sdk.

With the latest version, you need to

#include "chirp_sdk.h"

See the latest header file for the function declarations - https://github.com/chirp/chirp-arduino/blob/develop/src/chirp_sdk.h

Upvotes: 1

Related Questions