• VARIABLE TYPE CONVERTION PROBLEM
    I AM GETTING SOME DATA FROM TEMPERATURE SENSOR. IT IS A DOUBLE DATA TYPE. IS IT POSSIBLE TO CHANGE IT TO LONG OR INT DATA. AND JUST KEEP THE INTEGER PARTS. THX
  • converting types
    hi Forum, how can i convert items in a Array from typ Char[] in an Integer-Type? example: char data[] = "110111"; int sum = 0; sum = (int)data; or should i sum the all items in the array...
  • converting types
    hi Forum, how can i convert items in a Array from typ Char[] in an Integer-Type? example: char data[] = "110111"; int sum = 0; sum = (int)data; or should i sum the all items in the array...
  • How to convert type uint32_t to float??
    Hi, I try to read value of timer of STM32L152VD and convert it to float type. The way I use is first define the below union: typedef union { uint32_t timercount; float flowtime; }union_timercount;...
  • How convert double type to float?
    The time transmitted from ALLSTAR DATA SOURCE is double type,and wanted to display time to LCD,so I want to convert double type to float ,and want to uS .How can i do that? Thanks a lot!