All Questions
Tagged with array arduino-yun
2 questions
0
votes
1
answer
2k
views
How can I assign the value of a char array to a uint8_t array?
I have a char array variable that has a value.
I need to send this value through LoRa. The library I use for the LoRa implementation accepts an array of uint8_t. How can I pass the value of a char[] ...
0
votes
2
answers
586
views
Extracting a specific sequence of characters from an array
I have a character array called storebuffer that contains data from a POST submission and its in the format ssid=abcdef&pswd=ghijk. I wanted to extract everything after ssid= into one array called ...