Projects

Electronic Dartboard or How I Learned to Stop Worrying and Love ECE 476

Electronic Dartboard or How I Learned to Stop Worrying and Love ECE 476

Introduction Ever dream of having a darts game scored automatically without using those annoying plastic darts?  We decided it was a dream most of us has had at some point, and so decided to implement an automatic scoring system for a “real” cork dartboard. As college students, we found darts to be a great way

Electronic Dartboard or How I Learned to Stop Worrying and Love ECE 476 Continue Reading

Arduino String Comparison Operators

Arduino String Comparison Operators Code

The String comparison operators, ==, !=,>, < ,>=, <= , and the functionsequals() and equalsIgoreCase() allow you to make alphabetic comparisons between Strings. They’re useful for sorting and alphabetizing, among other things. The operator == and the function equals() perform identically. It’s just a matter of which you prefer. So if (stringOne.equals(stringTwo)) { [Get Code]

Arduino String Comparison Operators Code Continue Reading

Scroll to Top