Hi to all

I read pdf's files about jal

But I can find any command about rotate ?!

I don't find any sample about font 6*8 that it work correctly!!

Can show me which files I should read those?!

I can't rotate font
On Wednesday, July 28, 2021 at 4:30:12 PM UTC+4:30 Kiste wrote:

> Hi Majid,
>
> you see, it would probably need two or three workdays, maybe much more to 
> make the characters able to rotate, be it only the 8*12 font, or all fonts, 
> only by 90 degrees or also by 270 or 180. 
>
> Instead of just doing it, explaining all the steps to you would need about 
> three times as long. 
>
> Noone found the time to do that until now. I presume noone will find three 
> times as long a time to not only do it, but teach you to do it.
>
> If you can't find out to do it by yourself, I don't think you can urge 
> someone else to do it for you just when you need it to be done, let alone 
> teach you how to do it.
>
> If you want to decide what other people do, in this world, you usually 
> have to pay them.
>
>
> Greets,
> Kiste
>
> Am Mittwoch, 28. Juli 2021, 12:40:58 MESZ hat majid ebru <
> [email protected]> Folgendes geschrieben: 
>
>
>
>
>
> please guide me
>
> On Tuesday, July 27, 2021 at 10:13:36 PM UTC+4:30 majid ebru wrote:
> > Hi Rob
> > 
> > I don't findout ?!😳🤔
> > 
> > My program is above and I complie it and I don't see correctly?!
> > 
> > Can you guide me more?!!
> > 
> > Thank you
> > 
> > On Monday, July 26, 2021 at 11:16:29 PM UTC+4:30 [email protected] 
> wrote:
> >>  
> >>  
> >>  
> >>  
> >>  Hi Majid,
> >> 
> >>  
> >> 
> >> 
> >>  Make a copy, make the changes, test it and if it works we could add it 
> to Jallib as an improved version.
> >> 
> >>  
> >> 
> >> 
> >>  It may take you some time to fix it.
> >> 
> >> 
> >>  
> >> 
> >> 
> >> 
> >> Met vriendelijke groet,
> >> 
> >> Rob Jansen 
> >> 
> >> 
> >> ________________________________ 
> >> From: [email protected] <[email protected]> on behalf of 
> majid ebru <[email protected]>
> >> Sent: Monday, July 26, 2021 8:22:20 PM
> >> To: jallib <[email protected]>
> >> Subject: Re: [jallib] I can't use font8*12?!? 
> >>  
> >> 
> >> 
> >> 
> >> Hi Rob 
> >> How can I do that?!
> >> 
> >> 
> >> 
> >> 
> >> Kind regards
> >> 
> >> 
> >> 
> >>  
> >> On Monday, July 26, 2021 at 9:13:47 PM UTC+4:30 [email protected] 
> wrote:
> >> 
> >> 
> >>>  
> >>>  
> >>>  Hi Majid,
> >>> 
> >>>  
> >>> 
> >>> 
> >>>  Normally a character fits on one row in height when it is at most 8 
> pixels high so that's why it is straight forward to print a font like 5 * 7 
> or 6 *8. A 8 * 12 font does not fit on one row (12 pixels instead of 8) and 
> if you want to use that font anyway it is rotated but you then also have to 
> rotate your LCD.
> >>> 
> >>>  
> >>> 
> >>> 
> >>>  A solution would be to implement the font without rotation but for 
> that - if I am correct - the driver needs to be updated.
> >>> 
> >>>  
> >>> 
> >>> 
> >>>  Kind regards,
> >>> 
> >>>  
> >>> Rob
> >>> 
> >>>  
> >>> 
> >>> 
> >>> 
> >>> ________________________________ 
> >>> Van: [email protected] <[email protected]> namens majid 
> ebru <[email protected]>
> >>> Verzonden: maandag 26 juli 2021 12:34
> >>> Aan: jallib <[email protected]>
> >>> Onderwerp: [jallib] I can't use font8*12?!? 
> >>>  
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>>  
> >>> Hi to all 
> >>> 
> >>> 
> >>> 
> >>> I comeback
> >>> 
> >>> Don't worry , everything is ok
> >>> 
> >>> 🤣🤣🤣
> >>> 
> >>> 
> >>> 
> >>> 
> >>> I can't use font 8*12,
> >>> 
> >>> Can someone help and guide me ?!
> >>> 
> >>> 
> >>> 
> >>> 
> >>> --;@main 
> >>> 
> >>> include 18f4520 
> >>> 
> >>> pragma target clock 8_000_000 -- xtal frequency 
> >>> 
> >>> pragma target OSC hs 
> >>> 
> >>> pragma target WDT disabled 
> >>> 
> >>> pragma target LVP disabled 
> >>> 
> >>> enable_digital_io() 
> >>> 
> >>> ---------------------------------- GRAPHIC_LCD IO definition ------ 
> >>> 
> >>> var byte GLCD_DATAPRT is portD 
> >>> 
> >>> var byte GLCD_DATAPRT_DIR is portD_direction 
> >>> 
> >>> alias GLCD_E is pin_b0 
> >>> 
> >>> alias GLCD_RW is pin_b1 
> >>> 
> >>> alias GLCD_DI is pin_b2 
> >>> 
> >>> alias GLCD_CS1 is pin_b3 
> >>> 
> >>> alias GLCD_CS2 is pin_b4 
> >>> 
> >>> alias GLCD_RST is pin_b5 
> >>> 
> >>> -- 
> >>> 
> >>> alias GLCD_CS1_DIRECTION is pin_b3_direction 
> >>> 
> >>> alias GLCD_CS2_DIRECTION is pin_b4_direction 
> >>> 
> >>> alias GLCD_RST_DIRECTION is pin_b5_direction 
> >>> 
> >>> alias GLCD_E_DIRECTION is pin_b0_direction 
> >>> 
> >>> alias GLCD_RW_DIRECTION is pin_b1_direction 
> >>> 
> >>> alias GLCD_DI_DIRECTION is pin_b2_direction 
> >>> 
> >>> -- 
> >>> 
> >>> --const GLCD_CLIPPING = TRUE -- enable clipping (of ellipse) 
> >>> 
> >>> -- 
> >>> 
> >>> include delay 
> >>> 
> >>> include glcd_5x7_font 
> >>> 
> >>> include glcd_6x8_font 
> >>> 
> >>> include glcd_8x12_font 
> >>> 
> >>> include glcd_font 
> >>> 
> >>> glcd_font_use(FONT_5X7) 
> >>> 
> >>> -- 
> >>> 
> >>> include glcd_ks0108 
> >>> 
> >>> include glcd_common 
> >>> 
> >>> -- 
> >>> 
> >>> glcd_init() 
> >>> 
> >>> glcd_clear_screen() 
> >>> 
> >>> -------------------------------- 
> >>> 
> >>> glcd_font_use(FONT_8X12) 
> >>> 
> >>> glcd_char_goto(1, 1) 
> >>> 
> >>> print_string(glcd,"Seting") 
> >>> 
> >>> delay_1s(2) 
> >>> 
> >>> --------------------------------- 
> >>> 
> >>> glcd_font_use(FONT_6X8) 
> >>> 
> >>> glcd_char_goto(1, 20) 
> >>> 
> >>> print_string(glcd,"Seting") 
> >>> 
> >>> delay_1s(2) 
> >>> 
> >>> --------------------------------- 
> >>> 
> >>> glcd_font_use(FONT_5X7) 
> >>> 
> >>> glcd_char_goto(1, 40) 
> >>> 
> >>> print_string(glcd,"Seting") 
> >>> 
> >>> delay_1s(2) 
> >>> 
> >>> --------------------------------- 
> >>> 
> >>> forever loop 
> >>> 
> >>> end loop 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>> 
> >>>  
> >>> -- 
> >>> You received this message because you are subscribed to the Google 
> Groups "jallib" group.
> >>> To unsubscribe from this group and stop receiving emails from it, send 
> an email to [email protected].
> >>> To view this discussion on the web visit  
> https://groups.google.com/d/msgid/jallib/31ef555f-20d0-47e8-bb11-870dc1877093n%40googlegroups.com
> .
> >>> 
> >>> 
> >>> 
> >> 
> >> 
> >> 
> >> -- 
> >> You received this message because you are subscribed to the Google 
> Groups "jallib" group.
> >> To unsubscribe from this group and stop receiving emails from it, send 
> an email to [email protected].
> >>  To view this discussion on the web visit  
> https://groups.google.com/d/msgid/jallib/90492dd8-0227-4d25-9af7-2a867a943336n%40googlegroups.com
> .
> >> 
> >> 
> >> 
>
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "jallib" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> To view this discussion on the web visit 
>
> https://groups.google.com/d/msgid/jallib/d36e133d-ae51-4fd2-a9b1-ae9b2e376c53n%40googlegroups.com
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"jallib" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jallib/00e7d401-863c-4091-9bcc-0a689f9aa648n%40googlegroups.com.

Reply via email to