uint8_t (C language - Type). uint8_t stores an 8-bit unsigned number, from 0 to 255. It is equal to unsigned char.
Questions tagged [uint8t]
272 questions
-5
votes
1 answer
issue in file handling in c
Hi i am trying to read two characters from a file and want to send it to uint8_t* as hexadecimal .
Code:
#include
#include
#include
int file_handling();
int main()
{
uint8_t *output ;
…

Sam A
- 59
- 1
- 2
- 8
-8
votes
2 answers
How to convert a double to a hex / bytes
I need to send data to The Things Network and the data need to in bytes
To send data back and forth over The Things Network you’ll need to use
bytes
Some functions return a float with 2 decimal
23.56
or
4.32
I have big difficulties to…

martin10
- 187
- 3
- 16