When I want to verify the code, there is an error.
I just want to create an library to learn it.
I want to enter the pin number (for example 13) and change de level of this pin (0 or 1).
My library is just for enter the function "inverse" --> configure the choose pin in output, and the function "change" --> set a 0 if before was 1 etc..
It's just for understand how create an simple library.
I just don't understand how call a function in the librarie. I create my librarie, I include my librarie but I don't know how to call all the function there are in this librarie.
I read in this topic : https://www.arduino.cc/en/Hacking/LibraryTutorial
They call the function like this : library_name.function_name. With a dot in the middle. But it doesn't work. When I do the same think, it write : expected unqualified-id before "." token.
And when I delete the dot in the middle, the compilation work but I think my function is not call.
My Question :How to call a function who is in a library ??