Can anyone help me with this Tone error message? I have no idea what it means.
Arduino: 1.8.1 (Mac OS X), Board: "Arduino/Genuino Uno"
libraries/ToneLibrary/Tone.cpp.o (symbol from plugin):(.text+0x0): first defined here
Tone.cpp.o (symbol from plugin): In function timer0_pin_port': (.text+0x0): multiple definition of timer2_toggle_count'
libraries/ToneLibrary/Tone.cpp.o (symbol from plugin):(.text+0x0): first defined here
Tone.cpp.o (symbol from plugin): In function timer0_pin_port': (.text+0x0): multiple definition of __vector_7'
libraries/ToneLibrary/Tone.cpp.o (symbol from plugin):(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
exit status 1
Error compiling for board Arduino/Genuino Uno.
Please read the first post in any forum entitled how to use this forum. http://forum.arduino.cc/index.php/topic,148850.0.html then look down to item #7 about how to post your code.
It will be formatted in a scrolling window that makes it easier to read.
ChargerCop:
Can anyone help me with this Tone error message? I have no idea what it means.
Arduino: 1.8.1 (Mac OS X), Board: "Arduino/Genuino Uno"
It means: You are using MAC OS X and Arduino IDE version 1.8.1 while the board setting in the IDE is "Arduino/Genuino Uno", but it does NOT tell about the code you are trying to compile, actually.
Is it one of the tone() example programs?
If you want to know more: POST YOUR sketch CODE (included in code tags as Tom already told you)!
ChargerCop:
Sorry...please forgive me...like i said...I'm new to this
here is the code
had to put it as an attachment because the forum kept telling me I was over the 9000 character limit.
Itried to compile and got the following error (IDE 1.8.1, Windows-7
sketch_feb02a.ino:4:18: fatal error: Tone.h: No such file or directory
#include <Tone.h>
Did you install an extra Tone.h library?
Using the Arduino built-in tone() function is not enough for you?
In case you want to #include extra libraries, you first have to have them installed correctly, before you can compile code using functions from that library successfully.
Most likely, you messed it up installing the extra library correctly.