Shop OBEX P1 Docs P2 Docs Learn Events
PINK suport — Parallax Forums

PINK suport

wiresalotwiresalot Posts: 40
edited 2010-12-23 07:58 in BASIC Stamp
hello

How do I change the the Lan port from 80 to 81?

Thanks

wiresalot

Is there a PINK forum somewhere?

Comments

  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-16 17:45
    wiresalot wrote: »
    hello

    How do I change the the Lan port from 80 to 81?

    Thanks

    wiresalot

    Is there a PINK forum somewhere?
    '
    Look a little farther down on the forums list for "wireless"
    '
    This guys would be more up to date with the PINK. I haven't used the PINK in a long time.
    '
    Don't cross the streams.Take a look at the forum rules!
  • wiresalotwiresalot Posts: 40
    edited 2010-12-16 18:27
    why would I look under wireless for my question? It is a LAN device. am I missing something?
  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-17 15:23
    wiresalot wrote: »
    why would I look under wireless for my question? It is a LAN device. am I missing something?
    '
    Sorry:
    '
    I had the device mixed-up with something else.
  • wiresalotwiresalot Posts: 40
    edited 2010-12-17 16:21
    Thats ok.


    I dont understand "Don't cross the streams.Take a look at the forum rules!" that you typed.

    wiresalot
  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-17 18:21
    I forgot that the PINK was not wireless out of the box.I made my PINK wireless back in the day and this is were all of my confusion started.
    '
    "Don't cross the streams" is a line out of Ghost Busters. I was being funny, or trying to be. Again (Brain Fart).
    '
    You can't cross post questions from one forum to another (forum no-no). Since the INTERNET is a bunch of streams, Well bad humor. Again (Brain Fart)
    '
    The good news is:
    Theres and ignore option on the forums. Use this to ignore me in the future, Just in case I have some more cranial gas again.
    '
    Sorry I got you off track.
  • wiresalotwiresalot Posts: 40
    edited 2010-12-17 18:49
    No Problem I have them Brain farts to, no harm, no worries. Thanks for reply, I thought I had done something wrong on the forum.

    I am using it as a LAN device wich is fine, just need to change port 80 to something else searched all over with no answer.

    Thanks

    wiresalot
  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-18 11:27
    wiresalot wrote: »
    No Problem I have them Brain farts to, no harm, no worries. Thanks for reply, I thought I had done something wrong on the forum.

    I am using it as a LAN device which is fine, just need to change port 80 to something else searched all over with no answer.

    Thanks

    wiresalot
    '
    Theres a lot of info about port 80 and how to change it in routers and PCs on the Spinneret forum. This might be of help to you.
  • wiresalotwiresalot Posts: 40
    edited 2010-12-18 13:17
    Thanks, $WMc%, I ll have a look then.
    SEROUT TX, Baud, ["!NB0R06"] ' Command To Write Variable 06
    GOSUB ReadString ' Read PINK String Data
    DEBUG STR nbvar, CR

    How would I make a pin high or low from this code?
    I can change the value of ["!NB0R06"] with no problem.

    Thanks
    wiresalot
  • Mike GreenMike Green Posts: 23,101
    edited 2010-12-18 14:02
    First you have to come up with some kind of test for the string variable. You could use a particular string value like "0" vs. "1" or "L" vs "H". You could use the length of the string with "" meaning low and "X" or any single character for high. It's up to you. Once you can test for a particular PINK string value, then it's just a matter of doing a LOW <pin> or HIGH <pin> statement.
  • wiresalotwiresalot Posts: 40
    edited 2010-12-18 15:40
    Thanks, Mike you are the king!

    I have been fighting this for 3 days! It works!

    SEROUT TX, Baud, [" !NBOR01"]
    GOSUB ReadString
    DEBUG nbvar, CR
    IF nbvar = "1" THEN HIGH 1
    IF nbvar = "0" THEN LOW 1
    DEBUG STR nbvar, CR

    Thank you so much!

    wiresalot
  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-18 17:00
    wiresalot wrote: »
    Thanks, Mike you are the king!

    I have been fighting this for 3 days! It works!

    SEROUT TX, Baud, [" !NBOR01"]
    GOSUB ReadString
    DEBUG nbvar, CR
    IF nbvar = "1" THEN HIGH 1
    IF nbvar = "0" THEN LOW 1
    DEBUG STR nbvar, CR

    Thank you so much!

    wiresalot
    '
    '
    how did you fix the port 80 problem?
  • wiresalotwiresalot Posts: 40
    edited 2010-12-18 17:40
    Havent yet. :)


    I changed my router configuration so now I can access the PINK from the web.

    wiresalot
  • $WMc%$WMc% Posts: 1,884
    edited 2010-12-21 16:30
    wiresalot wrote: »
    Havent yet. :)


    I changed my router configuration so now I can access the PINK from the web.

    wiresalot
    '
    I see you got the port-forwarding working.
  • wiresalotwiresalot Posts: 40
    edited 2010-12-23 07:54
    Yes that was no problem, I do a lot of networking. Still would like to change the port number but there dosent seem to be possible.

    wiresalot
  • wiresalotwiresalot Posts: 40
    edited 2010-12-23 07:58
    Hello,

    need a little code help, Why do I get a character instead of a number?

    When I do a DEBUG it shows numbers, when sent to the PINK, its an odd character.


    Thanks
    wiresalot
Sign In or Register to comment.