Skip to content
English
  • There are no suggestions because the search field is empty.

YawCam Setup Part 2

Search

YawCam Setup Part 2

Controller-Side walkthrough on setting up YawCam


*For POS setup- Use Step 2


*USE SCRIPT ONLY IF NEED TO USE ON REG1*


Change Setting in ControlPanel to enable picture taking. Setting name is “Reg_CaptureProfilePic”.

Copy Sp_browser1 file in CS and create one for each terminal.

Create additions reg profiles in DB controlpanel. Us following script to copy a profile. The names in red are the profiles.


-- ClubspeedV8

DECLARE @FROM varchar(50)
DECLARE @To varchar(50)

SET @FROM = 'off1'
SET @To = 'off2'

INSERT INTO ControlPanel(TerminalName, SettingName, DataType,
DefaultSetting, SettingValue, Description, Fixed, CreatedDate)
SELECT     @TO, SettingName, DataType, DefaultSetting, SettingValue,
Description, Fixed, CreatedDate
FROM         ControlPanel
WHERE TerminalName = @FROM

INSERT INTO IntakePanel( TerminalName, ID, PanelName, TaskID)
SELECT     @TO, ID, PanelName, TaskID
FROM         IntakePanel
WHERE TerminalName = @FROM
Go

  1. Update URLs for all reg terminals using cameras in DB. Should look like this: (http://localhost/registration.default.aspx?camip=___.___.___.___:8888/out.jpg)


    2. For POS terminals you will need to set up two fields. See image:


3. Needs main engine restart and test it on profile in venue



  • Login to each new terminal with the environment settings off. This is to create the profiles and set up IE. (For REG1 setup)

Related Articles