2

I am trying to make an ultrasonic distance meter using Arduino. For this I added the ultrasonic library. But on compiling it shows this error "ultrasonic.h not available". Please tell me how to add this .h file.

dda
  • 1,595
  • 1
  • 12
  • 17
Nikhil Kumawat
  • 23
  • 1
  • 1
  • 3

1 Answers1

4

In you Arduino Sketch folder there is a folder called Libraries, create a folder there and put your header file in that folder and restart the Arduino IDE.

For example (PC):

Documents/Arduino/Libraries/ultrasonic/ultrasonic.h

You can now use it in all your projects.

If you only want to use with a particular sketch, place in in the same folder as you sketch and restart Arduino IDE.

VE7JRO
  • 2,518
  • 19
  • 26
  • 29
PhillyNJ
  • 1,178
  • 3
  • 10
  • 20