Search found 2 matches
- Tue Jan 26, 2021 4:53 pm
- Forum: ESP32 Arduino
- Topic: Print 8 characters
- Replies: 1
- Views: 1778
Re: Print 8 characters
I already made that, if someone would like to know this is how it looks: void sendData() { char customKey = customKeypad.getKey(); if (customKey == '*')reset(); else if (customKey) { dane[x]= customKey; x++; if (x==8){ Serial.println(dane); uint8_t bs[sizeof(dane)]; memcpy(bs, &dane, sizeof(dane)); ...
- Tue Jan 26, 2021 2:36 pm
- Forum: ESP32 Arduino
- Topic: Print 8 characters
- Replies: 1
- Views: 1778
Print 8 characters
Hi I'm new here. I'm writting a code for an Escape Room puzzle. It's about esp-now where one controller is connected to a 3x4 keyboard, and the second one is for controlling the game (it shows what people write from the keyobard). Now, I've got a code that prints every character one by one, and I'd ...