Welcome, Guest. Please login or register.
May 06, 2024, 06:02:40 AM

Login with username, password and session length
* Home Help Arcade Login Register
.
+  Forum
|-+  Homebrew Player Tracking and EFT Systems.
| |-+  NLG Homebrew Player Tracking and EFT Systems.
| | |-+  Game King Video Slot to PC (SAS RS232)
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] 2 3 4 Go Down Print
Author Topic: Game King Video Slot to PC (SAS RS232)  (Read 84128 times)
robim
Guest
« on: January 02, 2009, 12:56:04 PM »

Hi.

I have IGT Game King Video Slot - https://www.igt.com/GamingGroup/Games/game_detail.asp?toggle=ovr&pid=5.113.120&type_id=2873&pl=#cnt and I would like to connect it to PC over RS232 port and communicate with slot over SAS protocol. Please tell me if something like this is possible on this slot and if it is, how to do it. Thank you.


Cheers.
« Last Edit: January 03, 2009, 10:06:27 AM by robim » Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #1 on: January 15, 2009, 05:42:55 PM »

Yes !
Before 3 monts I made conections between PC and IGT an Aristocrat machine but with RS 485 protocol with SAS command and in Visual Basic developed own software
and now i make pay in machine and payout credit (money) in machine and ofcourse read all electronics counters , and status ( game mod, free , byssy, open door .....)  . Can communicate with  32 machine .

best regards
Zoran Avramovski
« Last Edit: January 15, 2009, 07:37:16 PM by zocky » Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #2 on: January 15, 2009, 06:57:58 PM »

zoran,
Can you send me a copy of your program to try it on mine? yummy

I appreciated very much! yes
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #3 on: January 15, 2009, 07:31:23 PM »

OH Sorry !

Software can't work with out hardware !
And they is maked with chelvetica on Macedonian language and not yet  complete developed  ( in this moment create print report for 32 machine)!
Of course not big problem translate him on english .

Maybe later - after fineshed him !!!

If interst you some details -can tell you .
« Last Edit: January 15, 2009, 08:02:06 PM by zocky » Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #4 on: January 15, 2009, 10:18:36 PM »

 Great zocky!

I can't wait to check it out... propeller
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #5 on: January 16, 2009, 02:15:49 PM »

Oh ! Sorry !!
« Last Edit: January 16, 2009, 03:44:24 PM by zocky » Logged
Joeylc
Founder and CEO of New_Life_Games_LLC
NLG Site Administrator
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 287
Offline Offline

Gender: Male
Posts: 1312


KG7NLG


WWW
« Reply #6 on: January 16, 2009, 03:31:28 PM »

What We Have Here is a Failure to Communicate or Translate.  arrow
Logged

"The Seeds of our Ultimate Destruction are Slowly and Quietly being Planted in the Fertile soil of Political Correctness”
                                                                   Joey Carruthers 2011


Hottest day in the United States recorded August 11, 1983 at 2:21 p.m. was 132 F. - recorded in the shade at the Bullhead City Fire Department. 
BUT IT WAS A DRY HEAT


I Have gone to find myself, and if I get back before I return, keep me here!
  ???





1-888-NLG-SLOTS 928-754-4147
e-Bay ID NewLifeGames_net
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #7 on: January 16, 2009, 07:10:57 PM »

What We Have Here is a Failure to Communicate or Translate.  arrow


olololololololololololololollololo! bust gut laughing rotflmao rotflmao Duh! Duh!
That's for sure..lol
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #8 on: January 16, 2009, 07:47:24 PM »

FYS CMF  frying pan

* sasimplementationguide.pdf (243.26 KB - downloaded 2519 times.)
Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #9 on: January 16, 2009, 11:47:21 PM »

Thank you very much zocky....interesting information actually. applause
Logged
robim
Guest
« Reply #10 on: February 10, 2009, 06:56:06 AM »

Hi.

Thank you for you replies. I have managed to connect my slot to PC through JB2 (J82) connector on slot comm board and I can issue general and long pools using SAS Tester application. Now I am developing my application in C# to try to get simple counters like (current game credits etc...). Until now I have implemented general pool which is sending 80 and 81 commands alternating every 40 ms, and I am getting response 00 from slot (No Activity). Problem appears when I try to send command like 01 1A + CRC (get current credits) and I am not getting any response from slot. From SAS documentation I have found out that I need to control wakeup bit (or parity bit), and that is impossible using C# and its SerialPort (correct me if I am wrong). Zoki, I would appreciate if you can tell me how did you managed to control it.

Here is my code in C# regarding serial communication:

private SerialPort port = new SerialPort("COM1", 19200, Parity.None, 8);
        public MainForm()
        {
            InitializeComponent();
            port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);
            port.Open();
            port.RtsEnable = true;
            port.DtrEnable = true;
        }
        private void sendPoolButton_Click(object sender, EventArgs e)
        {
            port.Write(new byte[] { 0x01, 0x1A, 0x03, 0xA6 }, 0, 4);
        }

Thank you.
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #11 on: February 10, 2009, 01:57:05 PM »

This picture is from SAS Interface


* DSC03431.JPG (112.35 KB, 640x480 - viewed 1158 times.)
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #12 on: February 10, 2009, 01:59:39 PM »

This is my Visual Basic Interface Software between PC and SAS Interface . Collect all information from Gamble Machine (GM) and save and calculate in PC .With this software I can and put inside Credit and Pay out from GM also.
With him I can command 32 GM .For more details contact me on my PM.


* DSC03433.JPG (76.22 KB, 640x480 - viewed 1441 times.)
« Last Edit: February 10, 2009, 02:12:35 PM by zocky » Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #13 on: February 10, 2009, 02:03:54 PM »

This is shematic diagram how connect PC and GM


* DSC03434.JPG (864.69 KB, 2048x1536 - viewed 1536 times.)
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #14 on: February 10, 2009, 02:07:18 PM »

And this is converter from RS232 to RS485 with max 232 and max 485 + 26ls31
Oooo , Pa ja sada sam uvideo da ti si iz HR.
Pozdrav od  SK - MK !!! Ne mogu ti pomoci oko detalja za tvog programa - neznam C - ja sam pocetnik u V.Basic Net ali dogurao sam donegde , moja specijalnost je asm za PIC microcontrolere.


* DSC03435.JPG (979.55 KB, 2048x1536 - viewed 1051 times.)
« Last Edit: February 10, 2009, 04:18:03 PM by zocky » Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #15 on: February 10, 2009, 02:51:11 PM »

What voltages go here, zocky?



* converter.jpeg (49.55 KB, 350x262 - viewed 5036 times.)
« Last Edit: February 10, 2009, 05:30:05 PM by stayouttadabunker » Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #16 on: February 10, 2009, 04:01:14 PM »

See in this pdf .All specification is here ! This is RS485 protocol .Point A & B ( 0-5v )

* MAX485.pdf (439.88 KB - downloaded 573 times.)
« Last Edit: February 10, 2009, 04:14:39 PM by zocky » Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #17 on: February 10, 2009, 04:13:36 PM »

protocol


* DSC03436.JPG (889.9 KB, 2048x1536 - viewed 1308 times.)
Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #18 on: February 10, 2009, 04:40:45 PM »

See in this pdf .All specification is here ! This is RS485 protocol .Point A & B ( 0-5v )


Excellent Zocky! yes

(Someone just asked how I drew the arrows in the photo I re-uploaded to Zocky...
Drawing arrows on a photogragh is pretty easy.

First, save the photo to "MyPictures" on you computer.
Send the saved pic to a photo editing proram such as Adobe Photoshop",
using the "Pencil", and a very light, bright color draw whatever you want on the photo and save it again.
Now you can upload the redone picture to the forum when asking specific questions to people who speak other languages besides english.)
« Last Edit: February 10, 2009, 05:31:29 PM by stayouttadabunker » Logged
robim
Guest
« Reply #19 on: February 12, 2009, 10:11:54 AM »

And this is converter from RS232 to RS485 with max 232 and max 485 + 26ls31
Oooo , Pa ja sada sam uvideo da ti si iz HR.
Pozdrav od  SK - MK !!! Ne mogu ti pomoci oko detalja za tvog programa - neznam C - ja sam pocetnik u V.Basic Net ali dogurao sam donegde , moja specijalnost je asm za PIC microcontrolere.

Pozdrav Zoki.

Cini se da moj slot prima poruke koristeci wakeup mode, a u Windowsima ne postoji mogucnost kontrole wakeup bita, tako da s tim ne mogu nista napravit. Negdje sam pronasao da SAS protokol moze koristiti parity bit umjesto wakeup bita, pa cu se malo poigrati s tim i javim sta se desava.

Pozdrav iz Zagreba.

Zivio.

English: It seems tham my slot receives messages using wakeup mode, and since you cannot have that mode in Windows, i cannot do anything with this. I have found out somewhere that SAS protocol can use parity bit instead of wakeup bit, so I will try to get it working in this way.
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #20 on: February 12, 2009, 04:18:17 PM »

Probaj sa 19 200 8 - 1 - Even  - ovaj parity je jako bitan!
Logged
SAT (aka GANDHI)
Contributing Gold NLG Member
Sr.NLG Member 501 to 1000 Post
*

Total Karma Storms: 224
Offline Offline

Gender: Male
Posts: 807



« Reply #21 on: February 12, 2009, 05:45:33 PM »

Oooo , Pa ja sada sam uvideo da ti si iz HR.
Pozdrav od  SK - MK !!! Ne mogu ti pomoci oko detalja za tvog programa - neznam C - ja sam pocetnik u V.Basic Net ali dogurao sam donegde , moja specijalnost je asm za PIC microcontrolere.

Excuse me mate, what's the meaning of this?  (translation please Wink )
Logged

Keep it simple!!!
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #22 on: February 12, 2009, 05:57:45 PM »

 Uhhhh....Zocky! ...what you say?  arrow Scratch Head
Logged
zocky
New NLG Member 1 to 100 Post
**

Total Karma Storms: 57
Offline Offline

Gender: Male
Posts: 18



« Reply #23 on: February 12, 2009, 08:20:11 PM »

Sorry ! Last message is only for ROBIM (Croatian Language).I am from Macedonia .
Logged
stayouttadabunker
Senior Full time Member.
Sr.Tech NLG Member 1000+ Post
*

Total Karma Storms: 1039
Offline Offline

Gender: Male
Posts: 13447



« Reply #24 on: February 12, 2009, 08:28:02 PM »

well, I'm going to have to get me a language descrambler! rotflmao
Logged
Pages: [1] 2 3 4 Go Up Print 
« previous next »
Jump to:  


If you find this site helpful, Please Consider Making a small donation to help defray the cost of hosting and bandwidth.



Newlifegames.com    Newlifegames.net    Newlifegames.org
   New Life Games    NewLifeGames  NLG  We Bring new Life to old Games    1-888-NLG-SLOTS
Are all Copyright and Trademarks of New Life Games LLC 1992 - 2021


FAIR USE NOTICE:

This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner.
We make such material available in an effort to advance awareness and understanding of the issues involved.
We believe this constitutes a fair use of any such copyrighted material as provided for in section 107 of the US Copyright Law.
In accordance with Title 17 U.S.C. Section 107, the material on this site is distributed without profit to those
who have expressed a prior interest in receiving the included information for research and educational purposes.

For more information please visit: http://www.law.cornell.edu/uscode/17/107.shtml.

If you wish to use copyrighted material from this site for purposes of your own that go beyond fair use,
you must obtain permission directly from the copyright owner.

NewLifeGames.net Web-Site is optimized for use with Fire-Fox and a minimum screen resolution of 1280x768 pixels.


Powered by SMF 1.1.20 | SMF © 2013, Simple Machines
Loon Designed by Mystica
Updated by Runic Warrior
Page created in 0.097 seconds with 19 queries.