I was messing with some monitors today and came across some weird activities. The main question is: Do pixels change in CC on monitors or am I going nuts?
I had a 2x2 monitor (advanced) and a computer on the back of those monitors in the down left corner. I ran:
local m = peripheral.wrap("back")one
local x, y = m.getSize()
print("X: "..x.." Y: "..y)
It doesnt matter if the x's and y's are switched, that is not the point. I got nicely print out for me:
X: 30-ish Y: 18-ish
Of course without the ish, cant remember, got quite some numbers in my head:S
Then I wrote my program, wich is just some basic writing on monitors and such, and some events from sorters (MiscPeripherals) and decided I had to move my computer one up.
I ran the same code as above and it printed:
X: 5 Y: 2
Now I am like, well my program doesnt work now anymore. It had some setCursor(17,17) so it wouldnt work with this x, y coordinates.
Does anybody have a clue whats going on?