'------------------------------------------------------------------------------- ' PrismNotes.BAS ' NOTES AND INFORMATION ABOUT THE PRISM PROTOCOL ' Compiled from PRISMMES.BAS, Gary Peek, IndustroLogic, Inc. ' Compiled by Walker Consulting Solutions '------------------------------------------------------------------------------- ' Classic and Prism display modes ' a = rotate b = hold c = flash d = n/a ' e = roll up f = roll down g = roll left h = roll right ' i = wipe up j = wipe down k = wipe left l = wipe right ' m = scroll n = special o = auto p = roll in ' q = roll out r = wipe in s = wipe out t = compressed rotate ' Special Modifiers - follow "n" with one of the following codes ' 0 = twinkle 1 = sparkle 2 = snow 3 = interlock 4 = switch ' 5 = slide 6 = spray 7 = starbursts 8 = welcome 9 = slot machine ' for simple colors the Prism still responds to these control sequences ' CHR$(28) + "1" = red ' CHR$(28) + "2" = green ' CHR$(28) + "3" = amber ' CHR$(28) + "4" = dim red ' CHR$(28) + "5" = dim green ' CHR$(28) + "6" = brown ' CHR$(28) + "7" = orange ' CHR$(28) + "8" = yellow ' CHR$(28) + "9" = rainbow 1 (top to bottom segments of character) ' CHR$(28) + "A" = rainbow 2 (mixed segments of characters) ' CHR$(28) + "B" = mixed color (different color characters in message) ' CHR$(28) + "C" = auto color (whole message changes colors) ' New Extended RGB Color Control Sequences for Prism: ' CHR$(28) + "Z" + [RRGGBB] (rgb hex values) ' 00H, 40H, 80H, C0H, and FFH appear to be the only values used in the ' messaging program written by Adaptive Micro Systems, but by doing tests ' it is determined that only 00, 40H, 80H, and C0H are valid. ' ' these are the values sent by the Adaptive Micro Systems messaging program ' FF0000 = red ' 400000 = dim red ' 00FF00 = green ' 004000 = dim green ' FFFF00 = amber ' 404000 = brown ' F04000 = orange ' 40FF00 = yellow ' 0000FF = blue ' 000040 = dim blue ' 00FFFF = aqua ' 00FF40 = light aqua ' 0040FF = cyan ' 004040 = light cyan ' FF0040 = magenta ' 8000FF = purple ' 400040 = light purple ' 400080 = violet ' FF40FF = light violet ' FFFF40 = redish white ' FFFFFF = full white ' 40FFFF = blueish white ' 40FF40 = white ' 404040 = grey ' FF4040 = pink