void sendString (const char * s);
^
ArduinolibrariesMAX7219-master/MAX7219.h:42:10: note: no known conversion for argument 1 from 'float' to 'const char*'
exit status 1
no matching function for call to 'MAX7219::sendString(float)'
And I don't have idea how solve this, please tell me what to do for solve this issue in the Max7219.cpp and Max7219.h files.
The sensor library works perfectly in LCD 16x2 and others LCD's but in the Max7219 -7 segment dispay- don't work
The library works fine for standard numbers and letters but not for reading sensors.
I want to build a weather station using the Max7219 -7 segment display- (I have a lot of this displays)
Thank you very much Nick! Finally I could make it work!
Now, how get temperature and humidity displayed on the screen at the same time?
Here is a video that I recorded, look:
As seen in the video, on the left side is humidity and the right side is temperature, sendString function only allows a reading separately. How do to the display shows the temperature and humidity at the same time?
In a field width at least 9 characters wide, put the whole number, the decimal point, and two digits of the fractional portion of the value. How is that, along with anything else, going to fit on a 8 character display?
If display.sendString() is blanking the display, populate the string properly, and combine the two strings into one. strcpy() and strcat() look useful.
In a field width at least 9 characters wide, put the whole number, the decimal point, and two digits of the fractional portion of the value. How is that, along with anything else, going to fit on a 8 character display?
If display.sendString() is blanking the display, populate the string properly, and combine the two strings into one. strcpy() and strcat() look useful.
Thank you Paul, I have tried this but I don't know how do it, you can write me the string? I want to see temp and humidity at the same time in the display, how combine both? Thanks.
Oh, come on now. 12 year old boys know how to do "it".
If the "it" that you don't know how to do is to use strcat() or strcpy() to populate a string, why haven't you googled those functions? They are dirt-simple to use.