SSB_CLICK.h where to find?

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

1 Like

SemperIdem I found it here at
Step 10: Updates (BMP280 + OLED 16x2) / ОбновлСния (BMP280 + OLED 16x2)

oled_44780_with_battery.ino

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.