Page 1 of 1

Error code

Posted: Sat May 12, 2012 9:45 am
by Keith529
while uploading RA_Preload error:32: 'class RA_NokiaLCD'has no member named 'DrawLargeText
comes up.

I know nothing about coding but willing to learn.
Thanks

Keith

Re: Error code

Posted: Sat May 12, 2012 9:51 am
by binder
Keith529 wrote:while uploading RA_Preload error:32: 'class RA_NokiaLCD'has no member named 'DrawLargeText
comes up.

I know nothing about coding but willing to learn.
Thanks

Keith
You need to enable Large Fonts. Open up RAGen, goto the Features Tab and choose the large font (checkmark next to the font you wish to use, probably Font 8x8) and press the Save button. Then exit arduino and reopen your sketch. Then try to compile.

What this means is you are trying to use a function (DrawLargeText) without having it enabled in your code. Lots of stuff get enabled/disabled automatically for you so when you create your code to upload, it is unique to you and all the extra stuff you don't need are removed (to keep code size down).

Re: Error code

Posted: Sat May 12, 2012 9:54 am
by rimai
Also, the easiest way to return to preloade code is using the "Restore Preloaded Code" that can be accessed through menu Tools->Restore Preloaded Code
Feel free to experiment with the Reef Angel Wizard too. I haven't posted any thread about it yet, which is coming soon, but it should also get you started very quickly.
You can access the wizard though menu Tools->Reef Angel Wizard

Re: Error code

Posted: Sat May 12, 2012 10:07 am
by Keith529
Thank You!!