Touchshield Slide Text

Is it possible to make the numbers on the slide bigger????

example

text(test1,60,100);

test1 is being floated (4.9158), the results display fine on the screen, i just wanted to make them bigger.

Cheers

You are going to have to supply more data.
What touchshield, link? There are a few.

Slide? What is that.

ok

i'm refering to the Touchshield Slide.

i am getting the touchshield Slide (Slide) to display sensor data from the arduino using hardwaresensor.h, all this works fine.
The end result is just monitoring a analog input on the arduino which talks to the touchshield slide which then in turn displays the results in a 'float' ie 4.765

float pinFloat = (test1*15.53/1023.0) //test1 is the data coming from arduino.

text(pinFloat,20,20);

The default size the touchshield slide displays numbers is too small, just wanted to know if i could display the results in a larger 'font' .

hope this makes sense

Cheers

hope this makes sense

It does but why no links like requested?
Spent some time googling it but still couldn't find a link to the library.

Look in the library file to see if there is a setting / call for the font size. In theory this should be possible but I don't know if the writers have included it. You can always write your own.

Sorry here is a link for the Touchshield Slide
http://www.liquidware.com/shop/show/TSL/TouchShield+Slide

i don't think it will be in the hardwaresensor.h, that just does the serial comms.

i will try to look in all the files related to the touchshield slide.

Thanks for the hep so far.

Found built in function 'dispPutLargeNumString()' , works a treat!