![]() |
Electronic scouting using 7 laptops and a little mysql
Our team is currently exploring some ways of doing scouting electronically. I have an idea I would like to get your opinions/tips on.
Here is how it would work: 7 total laptops all wired to a switch or router (1 server laptop and 6 data entry laptops). The server laptop runs xxamp and the data entry laptops would send data to server laptop(via php post method) to be stored in a mysql table that we could later export as a spreadsheet for analysis. |
Re: Electronic scouting using 7 laptops and a little mysql
Many teams have used this method in the past with sucess. Running a local server allows for some pretty cool ways for multiple people to view and interpret data. You might find that JS/PHP data interpretation is more useful than exporting to a spreadsheet.
Additionally, at events, it's sometimes hard to find a reliable source of electricity to power the electronics. You might want a few batteries and a power inverter. Keep in mind that a computerized system adds a layer of complexity. Keep the input system simple, back up databases, and allow for error management (like ways to edit previous data) and you should be good to go! |
Re: Electronic scouting using 7 laptops and a little mysql
Couldn't you run the server on one of the laptops being used for scouting? You could get by with 6 laptops and a little MySQL, I'm sure!
Also, as of what I've seen is that computers can be extremely reliable. My latest applications are threaded to the point where they crash every once in a while when under load (sending 900 requests at a time). I've never had any database corruption or even binary corruption. Of course, sending 900 requests at a time to the server will be very unlikely as it is neither internet connected (spammers) and you only have 7 users. The magic of electronic scouting systems is when you put together a ton of HTML and CSS to make a spectacular interface and add some JS/AJAX to make the entire page work without page loads or latency! Doing something like this will make it possible to sync realtime data between all of the computers! |
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
|
Re: Electronic scouting using 7 laptops and a little mysql
2 Attachment(s)
Quote:
My team has been using an Apache/MySQL/PHP setup for the past 3 years now. We have found it to be fairly reliable and much easier than our old paper system. Of course, our electronic system requires much more work on our part prior to our competition (programming, setup, thorough testing and training), but its well worth it for the added speed and functionality. If you are going to implement a computer based system, I can't stress enough how important it is to test your system and train your users. You want to be able to iron out any bugs in your code, and make sure everyone knows what they are doing well before you get to the competition. As mentioned before, you might want to experiment with data manipulation with PHP. All of our team's reports have been customized to our teams needs, and are generated with PHP directly from MySQL database. This saves you from having to export data to excel and update it every time the database changes. I've attached examples of 2 of the many different reports we have created over the years. |
Re: Electronic scouting using 7 laptops and a little mysql
That is very true. However, for just a server, that's kind of wasteful.
|
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
|
Re: Electronic scouting using 7 laptops and a little mysql
Or maybe you could plug in another computer temporarily. It's web-based. I have written web-applications that can disconnect from the server when it is unavailable and reconnect immediately after it is back up!
|
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
|
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
As the drive coach I was given a tablet with updated data after every match. |
Re: Electronic scouting using 7 laptops and a little mysql
I'm currently working on a server system like that for our scouting. Run web.py on a machine's port 80 (It's simple. It's python. It works on pretty much any system out of the box. And for an application like this, who needs MySQL when you have Sqlite3? Just use python's builtin support for it. ;) ). A bunch of machines connect to it over a web interface, make POST/GET requests to only POST/GET the data they need, and voila: No data corruption since you've neatly wrapped everything. No multiple copies of things (hopefully). No messy excel sheets. It would be cross-platform (since you're just using HTML/CSS/JS), and you could even set the server up remotely and use 4G connection to access it if you prefer that to lugging your system around on laptops which need LAN (since WiFi isn't allowed at competition).
On the topic of networking, could you use a Bluetooth PAN to do this? |
Re: Electronic scouting using 7 laptops and a little mysql
Use a raspberry pi as your server. Linux based. Easy to setup MySQL, php, and apache on. Very low power.
|
Re: Electronic scouting using 7 laptops and a little mysql
I am looking towards a PPTP bridge over serial :D. You only have one ethernet port, but maybe 3-6 USB ports! Bluetooth would be a great technology to use, however, I haven't found a way to create a PAN network from a computer so that tablets can connect. However, a touch screen might be a powerful weapon against the ghost of scouting! ;)
A RasPi is a perfect choice. If you write your server in a fast language such as C++, there's no need for anything more powerful! |
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
Another way to get data down to the drive coach is by having some sort of data syncing system using mobile Internet. You can either run the scouting server off a website and keep a constant connection (Ideal, so drive coach has up to date information on phone at all times) or have an export SQL script that syncs every few matches to an external source. |
Re: Electronic scouting using 7 laptops and a little mysql
Quote:
For our first year with an electronic scouting method, we actually borrowed 20 tablets from our schools library for competition. Over that previous summer, the district purchased hundreds of tablets for use in classrooms. Since the tablets weren't very popular with the teachers at the time, we were able to borrow quite a few of them that were pretty much unused. It might be worth checking with your school district to see if they have any tablets that you can borrow. |
| All times are GMT -5. The time now is 12:16. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi