Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Fix camera constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonWerbel authored and AndrewLester committed Feb 24, 2020
1 parent b25355f commit 28aa0de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const cameraLink2 = 'http://10.14.18.2:1182';
const limelightLink = 'http://10.14.18.11:5801';

const cameras = [
new Camera(null, cameraLink1),
new Camera(null, cameraLink2),
new Camera(null, limelightLink)
new Camera(cameraLink1),
new Camera(cameraLink2),
new Camera(limelightLink)
];

let initialLoad = true;
Expand Down

0 comments on commit 28aa0de

Please sign in to comment.