Home
JAQForum Ver 24.01
Log In or Join  
Active Topics
Local Time 15:43 01 Jul 2025 Privacy Policy
Jump to

Notice. New forum software under development. It's going to miss a few functions and look a bit ugly for a while, but I'm working on it full time now as the old forum was too unstable. Couple days, all good. If you notice any issues, please contact me.

Forum Index : Microcontroller and PC projects : hello from Germany

Author Message
RonnS
Senior Member

Joined: 16/07/2015
Location: Germany
Posts: 121
Posted: 12:24pm 23 Jul 2015
Copy link to clipboard 
Print this post

Hi, I'm new to the area Maximite .. I use a Duinomite because is available in Germany, I started about 3 years with the PICAXE because I needed a chicken door opener. Since that time, I love these basic programmable Microchips. For some time I had only the Maximite Project in my mind and bought a Duinomite and started my PICAXE transfer based system according to Maximite Basic.

here now a codesnipped for a small scroll-menu-system

CodeBegin:
'***************************************************
' MENU.BAS = Bildschirmmenü mit Scrollfunktion
'------------------------------------------------
n = 8 ' Total 6 Optionen
DIM mp$(8)length 9
FOR i = 1 TO n -1
READ mp$(i)
NEXT i
DATA "Monday", "Tuesday", "Wednesday", "Thurthday"
DATA "Friday", "Saturday","Sunday"
DO
CLS
LOCATE 2, 1
PRINT "Select a Option:"
FOR i = 1 TO n - 1
PRINT @(2, 100 + 20*i,1) mp$(i);
NEXT i
a = 1
DO
PRINT @(2,100 + 20*a,2) mp$(a);
DO
t$ = INKEY$
LOOP WHILE t$ = ""
PRINT @(2,100 + 20*a) " "
PRINT @(2,100 + 20*a,1) mp$(a)
if t$= CHR$(128)then
a = (a + n - 1) MOD n
elseif t$= CHR$(129)then
a = (a + 1) MOD n
endif
LOOP UNTIL t$ = CHR$(13)
LOCATE 2, 360
PRINT "You selected: "; mp$(a);
PRINT
PRINT "Repeat Press a Key ,Finish with[Esc]"
DO: taste$ = INKEY$: LOOP WHILE taste$ = ""

IF taste$ = CHR$(27) THEN END
LOOP
its simple but it works, running with Duinomite Basic 4.5


regards RonEdited by RonnS 2015-07-24
 
TassyJim

Guru

Joined: 07/08/2011
Location: Australia
Posts: 6264
Posted: 01:40pm 23 Jul 2015
Copy link to clipboard 
Print this post

Welcome to the forum.
It is good to see some code for the Maximite/Duinomite.

Most of the activity here is with the newer micromites at the moment but many of us still have the original maximite running as well.

Jim

VK7JH
MMedit
 
plasma
Guru

Joined: 08/04/2012
Location: Germany
Posts: 437
Posted: 09:41pm 23 Jul 2015
Copy link to clipboard 
Print this post

Hmm Chicken !

Willkommen.
 
Frank N. Furter
Guru

Joined: 28/05/2012
Location: Germany
Posts: 946
Posted: 12:38am 24 Jul 2015
Copy link to clipboard 
Print this post

Hi Ron,

interesting code! I will try it on my Duinomite (when I find time...)!

Auch von mir: Willkommen!

Frank
 
RonnS
Senior Member

Joined: 16/07/2015
Location: Germany
Posts: 121
Posted: 09:58am 29 Mar 2016
Copy link to clipboard 
Print this post

  Frank N. Furter said   Hi Ron,

interesting code! I will try it on my Duinomite (when I find time...)!

Auch von mir: Willkommen!

Frank

Thanks

I am glad that my LCD Backpack of silicon chip finally arrived First I ported my menuesytem to mmbasich 5.1 every touch in the middle of the displays can kursor go to a furtherin this example is listening my RF module of the current CICECO kommunication it is a ciseco ERF module connected to COM 1 my picaxe make the fieldwork This example is intended for interested parties miss also the menue system
option autorun on
rem OPTION EXPLICIT
OPTION CLOCKTRIM -4
DIM menuep$(8)length 9
GeneralClock
settick 1000,GeneralClock

cls
CONST DBlue = RGB(0, 0, 128) ' A dark blue colour
COLOUR RGB(GREEN), RGB(BLACK) ' Set the default colours
FONT 1, 1 ' Set the default font
BOX 0, 0, MM.HRes-1, 40, 3, RGB(RED), DBlue'TopLine
TEXT 165, 18,"Ron's GardenControl", CM, 1, 2, RGB(CYAN), DBlue
BOX 0, 200, MM.HRes-1, 20, 2, RGB(RED), DBlue'Groundline
BOX 120, 180, 60, 50, 2, RGB(red), DBlue' OK Button
Open "COM1:9600,256,IntCom,8" as #1

sub IntCom
dateninp$=INPUT$(8,#1)
pause 50
msg$=datenInp$
text 170,100," ",CM,1,2,RGB(green)
text 170,100,msg$,CM,1,2,RGB(green)
rem print @(150,405)msg$
'if left$(msg$,2)="Te" then gosub Standart1 'DEBUG
if left$(msg$,2)="Do" then MessageBox
'if left$(msg$,4)="aBBH" then gosub Standart2 'DEBUG
'if left$(msg$,3)="aAC" then gosub Sensor1 'DEBUG
'if left$(msg$,2)="aB" then gosub Sensor2 'DEBUG

'rem elseif gosub sensor1 'DEBUG
'endif
close #1
Pause 25
rem Open "COM1:115200,256,IntCom,8" as #1
Open "COM1:9600,256,IntCom,8" as #1
end sub

MenueStart

do
IF TOUCH(X) <> -1 THEN touched
LOOP

pause 100
end
SUB touched(MenueSel$)
LOCAL tx,ty
tx=TOUCH(X)
ty=TOUCH(Y)
if ty > 0 and tx > 0 then
if tx > 120 and tx < 170 and ty > 180 and ty < 220 then
text 150,210, "OK" ,CM,2,1,0,RGB(yellow)
pause 250
text 150,175, MenueSel$ ,CM,1,3,RGB(green)
endif
if tx > 120 and tx < 170 and ty > 180 and ty < 220 then
doitnow
endif
endif
END SUB
sub MenueStart
'************************************
' Bildschirmmenü mit Scrollfunktion
'------------------------------------
local n:local i
text 40,60 ,"Menue",CM,1,1,RGB(white)
n=6 ' Total 6 Optionen
FOR i = 1 TO n -1
READ menuep$(i)
NEXT i
DATA "Sensor001", "Sensor002", "Sensor003", "Sensor004"
DATA "Sensor005"
rem cls

FOR i = 1 TO n - 1
text 50, (70 + 20*i),menuep$(i),CM,1,1,RGB(green)
NEXT i
a = 1
DO
text 50,(70 + 20*a), menuep$(a),CM,1,1,RGB(white)
DO

LOOP WHILE TOUCH(X) = -1
pause 100
text 50,(70 + 20*a), " ",CM,1,1,RGB(black)
text 50,(70 + 20*a), menuep$(a),CM,1,1,RGB(yellow)
IF TOUCH(X) <> -1 and touch(y) < 190 THEN
rem a = (a + n - 1) MOD n
a = (a + 1) MOD n
pause 100
endif
touched
MenueSel$=menuep$(a)
text 170,60,MenueSel$,CM,1,1,RGB(green)
loop
end sub

sub GeneralClock
TEXT 150, 210, "OK",CM,2,1,0,RGB(Cyan)
TEXT 50, 210, DATE$, CM :TEXT 250, 210, time$, CM
end sub

sub doitnow
SelOne=val(right$(menuesel$,3))
text 170,150, menuesel$ ,CM,1,2,RGB(Cyan)
select case SelOne
case 1
print #1,"Temp:Ret"
case 2
Print #1,"a--RELAYBTOGGLE"
case 3
MessageBox

end select
pause 250
end sub
Sub MessageBox
Local integer w

w = 100 ' get the width of the text (used for the box width)

' draw the box and the message in it
RBox MM.HRes/2 - w - 20, 60, w * 2 + 40, 130, , RGB(yellow), 0
Text MM.HRes/2, 70, msg$, CT, 2, 1, RGB(white)
Text MM.HRes/2, 100, "Attention", CT, 2, 1, RGB(white)

' draw the OK button
RBox 110, 140, 100, 40, , RGB(cyan)
Text MM.HRes/2, 160, "OK", CM, 2, 1, RGB(cyan)

' wait for the button to be touched
Do While Not (Touch(x) > 110 And Touch(x) < 210 And Touch(y) > 140 And Touch(y) < 180) : Loop

' draw the OK button as depressed
RBox 110, 140, 100, 40, , RGB(cyan), RGB(cyan)
Text MM.HRes/2, 160, "OK", CM, 2, 1, 0, RGB(cyan)

' wait for the touch to be removed
Do While Touch(x) <> -1 : Loop
watchdog 1000
End Sub


'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' embedded fonts
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

' Font: Hom_16x24_LE
' Includes all ASCII characters



the c functions of fonds you have to load into the library


many thanks to the backsheedforum to share youre codes..
 
RonnS
Senior Member

Joined: 16/07/2015
Location: Germany
Posts: 121
Posted: 10:03am 29 Mar 2016
Copy link to clipboard 
Print this post

fonzs to load into the library
DefineFont #2
5F201810 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 80010000 80018001
80018001 80018001 00018001 00010001 00000000 80010000 00008001 00000000
00000000 00000000 700E0000 700E700E 2004700E 20042004 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 20010000 20012001
20012001 F80F2001 40024002 F01F4002 40024002 40024002 40024002 00000000
00000000 00000000 80008000 E8018000 08041802 00040004 E0010002 08001000
08080800 E00B100C 80008000 80008000 00000000 00000000 00070000 40108008
40104010 1C078008 0007E000 88007038 04010401 88000401 00007000 00000000
00000000 00000000 00000000 00000000 C004A003 00040004 00060002 20113009
4010C010 A0086010 00001807 00000000 00000000 00000000 70000000 E0007000
8001C000 00000001 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 10000000 20002000 40004000 80004000 80008000 80008000
80008000 40004000 20004000 10002000 00000000 00000000 00080000 00040004
00020002 00010002 00010001 00010001 00010001 00020002 00040002 00080004
00000000 00000000 80000000 80008000 F007980C 6003C001 180C3006 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
80008000 80008000 FC1F8000 80008000 80008000 00008000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 C001C001 00038003 00040006 00000000 00000000 00000000 00000000
00000000 00000000 FC1F0000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 C001C001 0000C001 00000000 00000000 00000000 08000000 10000800
20001000 40002000 80004000 00018000 00020001 00040002 00080004 00000008
00000000 00000000 00000000 3006C001 08081004 08080808 08080808 08080808
08080808 30061004 0000C001 00000000 00000000 00000000 00000000 800E8001
80008000 80008000 80008000 80008000 80008000 80008000 0000F80F 00000000
00000000 00000000 00000000 200CC003 10101010 10001000 40002000 00018000
00040002 08100008 0000F81F 00000000 00000000 00000000 00000000 3008C007
10001000 20001000 3000C003 08000800 08000800 300C0810 0000C003 00000000
00000000 00000000 00000000 A0006000 20012001 20042002 20082004 20102008
2000F81F 20002000 0000F801 00000000 00000000 00000000 00000000 0008F00F
00080008 C00B0008 1000300C 08000800 08000800 30181000 0000C007 00000000
00000000 00000000 00000000 0003F000 00040006 E0090008 080C100A 08080808
08080808 10060804 0000E001 00000000 00000000 00000000 00000000 1010F01F
20002010 40002000 40004000 80004000 80008000 00010001 00000001 00000000
00000000 00000000 00000000 2004C003 10081008 10081008 E0072004 08101008
08100810 300C1008 0000C003 00000000 00000000 00000000 00000000 3006C001
0808180C 08080808 28061804 0800C801 10000800 60001000 0000800F 00000000
00000000 00000000 00000000 00000000 00000000 C001C001 0000C001 00000000
00000000 C001C001 0000C001 00000000 00000000 00000000 00000000 00000000
00000000 C001C001 0000C001 00000000 00000000 C001C001 00038003 00040006
00000000 00000000 00000000 00000000 60001800 00068001 00300018 00060018
60008001 00001800 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 0000FC3F FC3F0000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00060018 60008001 0C001800 60001800
00068001 00000018 00000000 00000000 00000000 00000000 00000000 C0070000
10082008 10001000 20001000 0001C000 00000001 80010000 00008001 00000000
00000000 00000000 C0030000 1008200C 10101010 90107010 10111011 10111011
78109010 00100010 300C0008 0000E003 00000000 00000000 00000000 C00F0000
20024001 20022002 10041004 F80F1004 08080808 04100410 00001E3C 00000000
00000000 00000000 00000000 F03F0000 04080808 04080408 F00F0808 04080808
04080408 08080408 0000F03F 00000000 00000000 00000000 00000000 E4010000
0C0C1406 00100408 00100010 00100010 04080010 18060C0C 0000E001 00000000
00000000 00000000 00000000 E03F0000 08101810 04100410 04100410 04100410
04100410 18100810 0000E03F 00000000 00000000 00000000 00000000 F83F0000
08080808 80080808 800F8008 80088008 04080408 04080408 0000FC3F 00000000
00000000 00000000 00000000 FC1F0000 04040404 40040404 C0074004 40044004
00040004 00040004 0000C01F 00000000 00000000 00000000 00000000 C8030000
1818280C 00200810 00200020 FC200020 08100820 100C0818 0000E003 00000000
00000000 00000000 00000000 3E3E0000 08080808 08080808 F80F0808 08080808
08080808 08080808 00003E3E 00000000 00000000 00000000 00000000 F80F0000
80008000 80008000 80008000 80008000 80008000 80008000 0000F80F 00000000
00000000 00000000 00000000 FE030000 10001000 10001000 10001000 10101000
10101010 60082010 00008007 00000000 00000000 00000000 00000000 3C3E0000
20081008 80084008 000B0009 4008800C 10082008 08081008 00001E3E 00000000
00000000 00000000 00000000 803F0000 00040004 00040004 00040004 00040004
04040404 04040404 0000FC3F 00000000 00000000 00000000 00000000 0E380000
0C180C18 14141414 24122412 C4114411 04100410 04100410 00001E3C 00000000
00000000 00000000 00000000 7E780000 08140818 08120812 08110811 88108810
48104810 18102810 0000187E 00000000 00000000 00000000 00000000 E0030000
0C18180C 02200410 02200220 02200220 04100220 180C0C18 0000E003 00000000
00000000 00000000 00000000 F01F0000 04040804 04040404 08040404 0004F007
00040004 00040004 0000C01F 00000000 00000000 00000000 00000000 E0030000
0C18180C 02200410 02200220 02200220 04100220 180C0C18 8C01E003 0000F006
00000000 00000000 00000000 E03F0000 08081008 08080808 10080808 4008E00F
10082008 08081008 00000E3E 00000000 00000000 00000000 00000000 C8030000
1810280C 00100810 C003000C 08003000 08100800 10140818 0000E013 00000000
00000000 00000000 00000000 FC1F0000 84108410 84108410 80008000 80008000
80008000 80008000 0000F007 00000000 00000000 00000000 00000000 7C3E0000
08100810 08100810 08100810 08100810 08100810 10080810 0000E007 00000000
00000000 00000000 00000000 3E3E0000 04100410 08080808 10041004 20021004
20022002 C0014001 00008000 00000000 00000000 00000000 00000000 3E3E0000
04100410 84108410 44114411 280A4809 280A280A 180C180C 0000180C 00000000
00000000 00000000 00000000 3E3E0000 10040808 20021004 80004001 20024001
10042002 08080808 00003E3E 00000000 00000000 00000000 00000000 1E3C0000
10040808 20021004 40012002 80008000 80008000 80008000 0000F007 00000000
00000000 00000000 00000000 F81F0000 10100810 40102010 80004000 00020001
08040802 08100808 0000F81F 00000000 00000000 00000000 E0000000 80008000
80008000 80008000 80008000 80008000 80008000 80008000 80008000 E0008000
00000000 00000000 00080000 00040008 00020004 00010002 80000001 40008000
20004000 10002000 08001000 00000800 00000000 00000000 80030000 80008000
80008000 80008000 80008000 80008000 80008000 80008000 80008000 80038000
00000000 00000000 80000000 2002C001 08081004 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
FF7F0000 00000000 80030000 C0018003 6000C000 00002000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 2008C007 10001000 3008D007 10101010 30081010 0000DC07 00000000
00000000 00000000 00000000 00080038 00080008 0C0AF009 0208040C 02080208
02080208 0C0A040C 0000F039 00000000 00000000 00000000 00000000 00000000
00000000 180CE803 08100808 00100010 00100010 180C0C08 0000E003 00000000
00000000 00000000 00000000 08003800 08000800 2818C807 08201810 08200820
08200820 28181810 0000CE07 00000000 00000000 00000000 00000000 00000000
00000000 180CE003 04100808 FC1F0410 00100010 0C0C0008 0000F003 00000000
00000000 00000000 00000000 8401F800 00010001 0001F80F 00010001 00010001
00010001 00010001 0000F80F 00000000 00000000 00000000 00000000 00000000
00000000 2818CE07 08201810 08200820 08200820 28181810 0800C807 10000800
C00F3000 00000000 00000000 00080038 00080008 100AE009 0808080C 08080808
08080808 08080808 00003E3E 00000000 00000000 00000000 80000000 80008000
00000000 80008007 80008000 80008000 80008000 80008000 0000F80F 00000000
00000000 00000000 20000000 20002000 00000000 1000F00F 10001000 10001000
10001000 10001000 10001000 20001000 800F6000 00000000 00000000 0004001C
00040004 20047804 80044004 00070005 40048004 10042004 00003C1C 00000000
00000000 00000000 00000000 8000800F 80008000 80008000 80008000 80008000
80008000 80008000 0000FC1F 00000000 00000000 00000000 00000000 00000000
00000000 C4183877 84108410 84108410 84108410 84108410 0000C67C 00000000
00000000 00000000 00000000 00000000 00000000 100AE039 0808080C 08080808
08080808 08080808 00003E3E 00000000 00000000 00000000 00000000 00000000
00000000 180CE003 04100808 04100410 04100410 180C0808 0000E003 00000000
00000000 00000000 00000000 00000000 00000000 0C0AF039 0208040C 02080208
02080208 0C0A040C 0008F009 00080008 003F0008 00000000 00000000 00000000
00000000 2818CE07 08201810 08200820 08200820 28181810 0800C807 08000800
7E000800 00000000 00000000 00000000 00000000 C402380E 00020003 00020002
00020002 00020002 0000F01F 00000000 00000000 00000000 00000000 00000000
00000000 1804E803 00040804 70008003 08000800 100C0808 0000E00B 00000000
00000000 00000000 00000000 00040004 00040004 0004F01F 00040004 00040004
00040004 18020004 0000E001 00000000 00000000 00000000 00000000 00000000
00000000 08083838 08080808 08080808 08080808 28041808 0000CC03 00000000
00000000 00000000 00000000 00000000 00000000 08083E3E 10040808 10041004
20022002 C0014001 00008000 00000000 00000000 00000000 00000000 00000000
00000000 04101E3C 84100410 48098808 48094809 30065005 00003006 00000000
00000000 00000000 00000000 00000000 00000000 08083C1E 20021004 80004001
20024001 08081004 00003C1E 00000000 00000000 00000000 00000000 00000000
00000000 08103C3C 10080810 20081008 40042004 80024002 00018001 00020001
803F0002 00000000 00000000 00000000 00000000 0808F80F 20001008 80004000
00020001 08080804 0000F80F 00000000 00000000 00000000 60000000 80008000
80008000 80008000 80008000 80000003 80008000 80008000 80008000 60008000
00000000 00000000 00000000 80000000 80008000 80008000 80008000 80008000
80008000 80008000 80008000 80008000 00000000 00000000 00030000 80008000
80008000 80008000 80008000 80006000 80008000 80008000 80008000 00038000
00000000 00000000 00000000 00000000 00000000 00000000 98190C0F 0000F030
00000000 00000000 00000000 00000000 00000000
End DefineFont


' ArialNumFontPlus.bas
' Font type : Special (SubSet)
' Font size : 32x50 pixels
' Memory usage : 2204 bytes
DefineFont #3
0B303220 00000000 00000000 00F00F00 00F81F00 00FE7F00 00FFFF00 00FFFF01
801FF803 C00FF003 C007E007 E003C007 E003C00F F001800F F001800F F001801F
F800001F F800001F F800001F F800001F FC00003F 7C00003E 7C00003E 7C00003E
7C00003E 7C00003E 7C00003E 7C00003E 7C00003E 7C00003E 7C00003E 7C00003F
F800001F F800001F F800001F F800001F F001800F F001800F F001800F E003C007
E003C007 C007E003 C00FF003 801FF801 00FFFF00 00FEFF00 00FC7F00 00F81F00
00E00700 00000000 00000000 00000000 00000000 00000000 00F00000 00F00100
00F00300 00F00700 00F00F00 00F01F00 00F03F00 00F07F00 00F0FF01 00F0FD03
00F0F10F 00F0E10F 00F0810F 00F0010F 00F0010C 00F00100 00F00100 00F00100
00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100
00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100
00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100 00F00100
00F00100 00F00100 00F00100 00000000 00000000 00000000 00000000 00F00F00
00FE7F00 00FFFF01 C0FFFF03 E0FFFF03 F00FE007 F003C00F F001800F F800001F
F800001F F800003E 7C00003E 7C00003E 7C000000 7C000000 7C000000 78000000
F8000000 F8010000 F0030000 F0070000 E00F0000 C01F0000 803F0000 007F0000
00FE0000 00FC0100 00F80300 00F00700 00E00F00 00C01F00 00803F00 00007F00
0000FE00 0000FC01 0000F803 0000F007 0000E007 0000C00F 0000800F 0000801F
FCFFFF3F FCFFFF3F FCFFFF7F FCFFFF7F FCFFFF7F 00000000 00000000 00000000
00000000 00F00F00 00FC3F00 00FEFF00 00FFFF01 80FFFF03 C01FE003 C00FC007
E0078007 E003800F E003000F F003000F F001000F F0030000 E0030000 E0030000
E0070000 C00F0000 C01F0000 803F0000 00FF0700 00FF0700 00FF0700 80FF0700
C01F0000 E00F0000 E0030000 F0010000 F0000000 F8000000 F8000000 FC000000
FC000000 FC000000 FC00001F FC00001F F800001F F801001F F801800F F003800F
F007C00F E00FE007 C03FFC03 80FFFF01 00FFFF00 00FC7F00 00F00F00 00000000
00000000 00000000 00000000 000F0000 001F0000 001F0000 003F0000 003F0000
007F0000 007F0000 00FF0000 00FF0100 00FF0100 00FF0300 00DF0700 00DF0700
009F0F00 009F0F00 001F1F00 001F3E00 001F7E00 001F7C00 001FF800 001FF800
001FF001 001FE003 001FE003 001FC007 001FC007 001F800F 001F801F 001F001F
001F003E FCFFFF3F FCFFFF3F FCFFFF3F FCFFFF3F FCFFFF3F 001F0000 001F0000
001F0000 001F0000 001F0000 001F0000 001F0000 001F0000 001F0000 001F0000
001F0000 00000000 00000000 00000000 00000000 F0FFFF01 F0FFFF01 F0FFFF01
F0FFFF01 F0FFFF01 0000E003 0000C003 0000C003 0000C003 0000C007 0000C007
0000C007 0000C007 00008007 0000800F 00F0800F 00FE8F0F 80FFBF0F C0FFFF0F
E0FFFF0F F007FF1F F003E01F F801C01F F800001F F8000000 FC000000 7C000000
7C000000 7C000000 7C000000 7C000000 7C000000 7C000000 F800003F F800003F
F800003F F000001F F001001F E003801F E007C00F C01FE007 80FFFF03 00FFFF03
00FEFF01 00F87F00 00E00F00 00000000 00000000 00000000 00000000 00F00F00
00FE3F00 00FFFF00 80FFFF01 C0FFFF03 E007E007 F003C007 F001C00F F800800F
F800801F F800801F 0000001F 0000001F 0000003F 0000003F 0000003F 00F0033F
00FC1F3F 00FE7F3F 80FFFF3F C0FFFF3F E00FF83F F003E03F F003E03F F801C03F
F800803F F800803F 7C00003F 7C00003F 7C00003F 7C00003F 7C00003F 7C00003F
7C00001F 7800801F F800801F F800801F F800800F F001C00F F003F007 E00FF803
C0FFFF01 80FFFF00 00FF7F00 00FC1F00 00F00300 00000000 00000000 00000000
00000000 FCFFFF3F FCFFFF3F FCFFFF3F FCFFFF3F FCFFFF3F FC000000 FC000000
F8010000 F0010000 E0030000 E0030000 C0070000 800F0000 001F0000 003E0000
007C0000 00FC0000 00F80000 00F00000 00F00100 00F00100 00E00300 00E00300
00E00300 00C00700 00C00700 00800F00 00800F00 00800F00 00001F00 00001F00
00001F00 00001F00 00003E00 00003E00 00003E00 00003E00 00003E00 00007C00
00007C00 00007C00 00007C00 00007C00 0000F800 0000F800 0000F800 00000000
00000000 00000000 00000000 00F00F00 00FE7F00 80FFFF00 80FFFF01 C01FF803
E007E007 E003C007 F003C00F F001800F F001800F F001800F F001800F F001800F
F001800F E003C007 E003C007 C007E003 8007F001 003FFC00 00FF7F00 00FC3F00
00FE7F00 00FFFF00 C0FFFF03 E00FF007 F003C00F F001800F F801801F F800001F
F800001F 7C00003E 7C00003E 7C00003E 7C00003E 7C00003E 7C00003E F800001F
F800001F F001800F F003800F E007C007 C00FF003 80FFFF01 00FFFF00 00FC3F00
00F00F00 00000000 00000000 00000000 00000000 00F00F00 00FC3F00 00FFFF00
80FFFF01 C0FFFF03 E01FF803 E007E007 F007E007 F003C00F F803C00F F801801F
F801801F FC00001F FC00001F FC00001F FC00001F FC00001F FC00001F FC01801F
FC01801F FC03C00F FC03C00F FC07E007 FC07E007 FC1FF803 FCFFFF01 FCFFFF00
FCFEFF00 FCF87F00 FCE01F00 FC000000 FC000000 FC000000 FC000000 F8010000
F801003F F001003F F003001F E007801F E00FC00F C03FE00F 80FFFF07 00FFFF03
00FEFF01 00F8FF00 00E03F00 00000000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00E00000 00F00100 00F80300 00F80300 00F80300 00F00100 00E00000
00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00E00000 00F00100
00F80300 00F80300 00F80300 00F00100 00E00000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 00000000
End DefineFont
 
RonnS
Senior Member

Joined: 16/07/2015
Location: Germany
Posts: 121
Posted: 10:25am 29 Mar 2016
Copy link to clipboard 
Print this post



 
Print this page


To reply to this topic, you need to log in.

The Back Shed's forum code is written, and hosted, in Australia.
© JAQ Software 2025