1
Messages
This section allows you to view all Messages made by this member. Note that you can only see Messages made in areas you currently have access to.
Messages - sheetzam
2
#twatch network LCD backpack / Re: Matrix Orbital commands?
Here's what the code SHOULD have been:
Code: [Select]
$fp=fsockopen('192.168.1.19', 1337);
if ($fp){
fwrite($fp, "xFEx47x01x01");
sleep(1);
fclose($fp);
}
3
#twatch network LCD backpack / Re: Matrix Orbital commands?
If I do this php:
Code: [Select]
$fp=fsockopen('192.168.1.19', 1337);
if ($fp){
fwrite($fp, "xFEx4111"); //put cursor at postion 0,0
fwrite($fp, "xFEx58"); //clear display
sleep(1);
fclose($fp);
}
I get the blinking block cursor at the upper left corner, as I would expect.
However, the two lines of scrolling text continue to scroll, and after a few minutes the twitter feed updates and continues on its merry way.
Any ideas?
4
#twatch network LCD backpack / Matrix Orbital commands?
5
#twatch network LCD backpack / Re: Got unit,what's next??
If you're wanting to do more, you'll need to learn a lot more about computers, I think.
6
#twatch network LCD backpack / switching to Matrix Orbital mode
Or is there another command which should do it?
Also, sending 0xFE 0x99 does not display the IP address information, or if it does, it does so very quickly and is overwritten.
Also, which version of the #twatch firmware shipped with the device?
7
#twatch network LCD backpack / PHP starter
Code: [Select]
<?php
$fp=fsockopen('192.168.1.8', 1337);
if ($fp){
fwrite($fp, "xFEx42");
sleep(1);
fclose($fp);
}
8
#twatch network LCD backpack / Re: Great, now what?
9
#twatch network LCD backpack / Re: Great, now what?
Will do some reading, see if I'm missing something on the back light. Any suggestions in the mean time?
10
#twatch network LCD backpack / Great, now what?
So, given that I probably applied too much voltage to the #twatch, is there any way to repair it? I get no ethernet lights, no lcd display. Is it cooked?