I’m able to open up this week if anyone wants to be there , I will be there from about 1815
Continuing the discussion from Can anyone run Electronics Wednesday this week?:
I’m able to open up this week if anyone wants to be there , I will be there from about 1815
Continuing the discussion from Can anyone run Electronics Wednesday this week?:
Excellent Steve, you read my mind - was about to ping you all again, thanks
Feel free to nominate a cool picture for the FB event if you happen to have one handy
yep Np I will find one for the FB note
i will be opening up around 1815 and the theme is playing with Esp8266
Following up on today’s discussion with Jason, Re the 2.4" touch LCD.
Following this instructable I use the SPFD5408 library. My changes below.
spfd5408_calibrate.ino
:
//These are the pins for the shield!
#define YP A3 // was A1
#define XM A2
#define YM 9 // was 7
#define XP 8 // was 6
libraries/SPFD5408/SPFD5408_TouchScreen.cpp
// *** SPFD5408 change -- Begin
// SPFD5408 change, because Y coordinate is inverted in this controller
return TSPoint(1023 - x, 1023 - y, z);
// -- End