thelastoutpostworkshop / gpio_viewer

GPIOViewer Arduino Library to see live GPIO Pins on ESP32 boards
https://youtu.be/JJzRXcQrl3I
MIT License
1.07k stars 110 forks source link

Update gpio_viewer.h #131

Closed AnandPandey455 closed 4 months ago

AnandPandey455 commented 4 months ago

By Anand

AnandPandey455 commented 4 months ago

Fixed the (u_int32_t )error

thelastoutpostworkshop commented 4 months ago

Yes there is indeed an error, u_int32_t should be uint32_t in the library, if you replace it, you should not get the error without #include

thelastoutpostworkshop commented 4 months ago

I have updated the library with the type changed from u_int32_t to uint32_t.

Thanks for reporting it