anthony123
New Member
Hi, i'm trying to put my name (anthony) into this air display but i cant
I do it with autor's page code and works excellent!!!!
Thankss
I do it with autor's page code and works excellent!!!!
Thankss
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
anthony123 said:The problem is: i dont know re-copiler. Do you can say me what are the rigth tools to do that? Pls help me... i wanna learn about copilation process...![]()
jpanhalt said:The first choice in my view is much more difficult, particularly if you are not familiar with coding. You have to use a hex editor, not a text editor.
Nigel Goodwin said:Not true, a HEX file is just a standard ASCII text file, Notepad is all you need to edit it - a HEX editor would offer no advantage, and probably put disadvantages in your way?.
; name : JP6293E
; author : Anthony Sotillet
; date : 07/01/08
; Microcontroller: 12f629 Speed: 4 Mhz Internal RC
delay 200 miliseconds
Set Comparator Mode 7
variable byte f = 00000000b ; Output data
variable byte s ; Temporal variable
variable byte o ; message number.
procedure salida( s as byte ) is
gpio = s
delay 500 us
gpio = 00000000b
delay 200 us
end procedure
procedure disp ( f as byte ) is
if f = "0" then f = "O"
if f = "A" then
salida(0011_0110)
salida(0000_0101)
salida(0000_0101)
salida(0011_0110)
end if
if f = "H" then
salida(0011_0111)
salida(0000_0100)
salida(0000_0100)
salida(0011_0111)
end if
if f = "N" then
salida(0011_0111)
salida(0000_0010)
salida(0000_0100)
salida(0001_0000)
salida(0011_0111)
end if
if f = "O" then
salida(0001_0110)
salida(0010_0001)
salida(0010_0001)
salida(0001_0110)
end if
if f = "T" then
salida(0000_0001)
salida(0011_0111)
salida(0000_0001)
end if
if f = "Y" then
salida(0000_0001)
salida(0000_0010)
salida(0011_0100)
salida(0000_0010)
salida(0000_0001)
end if
if f = "h" then ; 'h' lowercase = Hearth character
salida(0000_0010)
salida(0000_0111)
salida(0001_0111)
salida(0011_0110)
salida(0001_0111)
salida(0000_0111)
salida(0000_0010)
end if
if f = " " then ; space character.
delay 4 miliseconds
end if
delay 1 milisecond
end procedure
; main program
gpio = all output
if o = 0 then
; Display "BE HAPPY "
o = o + 1
forever loop
disp("A")
disp("N")
disp("T")
disp("H")
disp("O")
disp("N")
disp("Y")
disp(" ")
disp("h")
end loop
end if
o = 0
salida(0000_0000)
sleep microcontroller ; sleep command
nop ; No operation
TRY THE ATTACHED FILE ANTHONY123anthony123 said:Hi, i'm trying to put my name (anthony) into this air display but i cant![]()
I do it with autor's page code and works excellent!!!!
Thankss![]()
Boncuk said:Hi Anthony,
it would be a good idea to post the exact authors code which is normally displayed.
I translated a BMS computer program from English to German without touching any other Bit, just replaced the English text with German. The program works fine with no malfunctions.
I have two powerful hex editors and finding the author's code it will be changed very quickly.
Assuming the author didn't deliver the source code (why should he?) the only way to apply changes is going directly to the hex code.
Disassembling would be another choice, but do you know which language was used to create the hex file?
Boncuk
I only want show my name and learn how!!mvs sarma said:His interest appears to be just to see whether he could see his name -- Perhaps thereafter he would practice the PICbasic or assembly.
anthony123 said:I only want show my name and learn how!!
PD: I dont know use the MPLAB as well as you!! i even dont copile an one single
code in the MPLAB![]()
anthony123 said:Thanksssssss!! But i know that part, the part that i dont know do is copile the code!! As well as it, i dont know what languaje is the algorimth!!
Help please!!