When we are [comparing a user's current slack status to a known status](https://github.com/willblev/Slack_two_button_traffic_light/blob/main/two_button_traffic_light.ino#L287) our conditional is never met. We think this is due to the fact that we are comparing a pointer (`char*`) to a value. While `strcmp` could be a solution this is [causing crashes](https://arduinojson.org/v6/issues/crash-or-reboot/#example-with-strcmp)
When we are comparing a user's current slack status to a known status our conditional is never met. We think this is due to the fact that we are comparing a pointer (
char*) to a value. Whilestrcmpcould be a solution this is causing crashes