connormartin12 / NHL_Goal_Light

Edit ReadMe file
0 stars 0 forks source link

Change "delay" from a char to uint8_t #13

Closed connormartin12 closed 1 year ago

connormartin12 commented 1 year ago

"char delay" in the user_info structure has currently been set as a char. To avoid having to convert between char and int multiple times, this should be set as a uint8_t and converted to uint8_t upon being written to in the ble characteristic callback.

connormartin12 commented 1 year ago

I won't be doing this. Requires byte parsing on the javascript side. Casting the char to an int in the eps32 code will be easier.