How to fix enum name "conflicts with previous declaration" in Arduino


To resolve the conflict, declare the enums with different names, under different namespaces.

To be able to use two or more enums that have the same enumeration constant name (i.e. EnumA { Value _1 } and EnumB { Value_1}) within the same file, declare the enums using different names under different namespaces.
To learn how to do this consult option two in the tutorial linked below.
Looking to learn more about things you can do with Arduino?
Search our blog to find educational content on Arduino.
Any Questions?
We are actively looking for feedback on how to improve this resource. Please send us a note to inquiries@delasign.com with any thoughts or feedback you may have.