I am hoping to start a new Arduino project but can't find a required library "SSB_CLICK.h"
Any idea where I could download it?
Thanks
Where did you hear about it and what does it do ?
Hi UkheliBob
Its part of the sketch for Vario meter for Paragliding hang-gliding.
Info from code says βbutton hold library connectionβ / Russian translation (ΠΏΠΎΠ΄ΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π±ΠΈΠ±Π»ΠΈΠΎΡΠ΅ΠΊΠΈ ΡΠ΄Π΅ΡΠΆΠ°Π½ΠΈΡ ΠΊΠ½ΠΎΠΏΠΊΠΈ).
Let's try again with the "where did you hear about it" question, shall we?
Can you provide a link to the page containing the sketch and other details of the vario ?
It helps if you get the name of the library right. It seems to be called sbb_click and is available here
which is, I suspect, a page that you know about already
SemperIdem I found it here at
Step 10: Updates (BMP280 + OLED 16x2) / ΠΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΡ (BMP280 + OLED 16x2)
Thanks UKHeliBob for the link.
I knew about this one, but was unsure as the other libraries I added are in folders
containing other files is there something missing?
Sorry if the questions are basic but Iβm a newbie.
I placed SBB_CLICK.h by itself in the Arduino libraries but ArduinoIDE 2.1.0 is
giving me a βfatal error; SBB_CLICK.h: No such file or directory.
The simplest option for you to test is to put all of the required library files, both the .h and .cpp files, in the same folder as the sketch and change the sketch to use quotation marks around the library file name instead of angle brackets
So include "SBB_CLICK.h"
instead of <SBB_CLICK.h>
The quotation marks tell the compiler to look for the library files in the sketch folder instead of the normal libraries folder
I did as you said in the previous post UKHeliBob and now its compiling.
Which is good news, unfortunately my linux computer is denied permission
to use usb β/dev/ttyUSB0β. Maybe its the mega 2560 that Iβm using to upload the sketch.
Another thing to work out, but happy its compiling.
Thanks again UKHeliBob
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.