Robot car project

I facing a problem while uploading program to audiuno

It is giving me a error as boltiot-audiuno-helper.h file does not exist how can I fix this

@anujkumar123929
To keep it simple you actually don’t need boltiot-arduino-helper library you can normally have your coding done on arduino board and on the python side, you can use mybolt.serialRead(‘10’) which reads all serial.print() commands of your arduino thereby you can fetch information from arduino to bolt.
You can also use #include<SoftwareSerial.h> library in your arduino.

i have another error boltiot not define , please provide me full code if you do

Arduino: 1.8.13 (Windows 10), Board: “Arduino Uno”

C:\Users\dell\Desktop\robot_car\BoltBot-app\Bolt_Robot_Car\Bolt_Robot_Car.ino: In function ‘void setup()’:

Bolt_Robot_Car:86:3: error: ‘boltiot’ was not declared in this scope

boltiot.begin(Serial);

^~~~~~~

C:\Users\dell\Desktop\robot_car\BoltBot-app\Bolt_Robot_Car\Bolt_Robot_Car.ino: In function ‘void loop()’:

Bolt_Robot_Car:97:3: error: ‘boltiot’ was not declared in this scope

boltiot.handleCommand();

^~~~~~~

exit status 1

‘boltiot’ was not declared in this scope

This report would have more information with
“Show verbose output during compilation”
option enabled in File -> Preferences.
fixed it @01fe19bec182

Hi @anujkumar123929,

Please go through the installation steps for the BoltIoT-Arduino-Helper library and then re-compile the code.

The steps are given in the following link

Also make sure that you include the library in your project. This can be done by adding the following link at the top of your code

#include<boltiot-arduino-helper.h>