display µc programming like a sign

I had a grid that mapped buttons to pixels so pressing a button displayed a letter. I had one programming that was a positive match so the pixel turned on, and another programming that was negative and just passed the signal on to the next pixel. If I had to right-click on each µc to see its programming, it would take me longer to find a problem. If I can see the programming just by looking at it, I could find a typo much easier.
I'm not sure about the \n \n\r thing.
This commit is contained in:
khonkhortisan 2012-08-21 10:35:34 -07:00
parent 15fa38b848
commit 68b99fed76
1 changed files with 2 additions and 2 deletions

View File

@ -142,9 +142,9 @@ function update_yc(pos)
code = string.gsub(code, " ", "") --Remove all spaces
code = string.gsub(code, " ", "") --Remove all tabs
if yc_parsecode(code, pos) == nil then
meta:set_string("infotext", "Code not valid!")
meta:set_string("infotext", "Code not valid!\n"..code)
else
meta:set_string("infotext", "Working Microcontroller")
meta:set_string("infotext", "Working Microcontroller\n"..code)
end
end