This repository offers touchscreen user-interface templates for interactive kiosk displays. Please fork repository and comment/push useful changes upstream.
Host your project online. GitHub won't host videos and you probably don't want to host them on YouTube (YouTube may provide users a kiosk exit). You can host your videos on your Pitt Linux server.
-For our project presentations, you'll run your project on either a Lenovo Duet Touchscreen Chromebook or a Lenovo 110e. We'll profile the best projects for public viewing on a dedicated ACER T272HL display.
- 1920x1080
- HDMI Cable
- USB Keyboard Cable
Test your site for 1920x1080 display.
- Lenovo 3100 2-in-1 Touchscreen (7 qty)(1366 x 768)
- Lenovo Duet Touchscreen (15 qty)(USB-C only. Requires Dongle) (1920 x 1200)
Powerwash Chromebook
- Sign out of your Chromebook.
- Press and hold Ctrl + Alt + Shift + r.
- Select Restart.
- In the box that appears, select Powerwash. Continue.
- Follow the steps that appear and sign in with your Google Account. ... Once you've reset your Chromebook:
###Connecting to Pitt Net
- Select WIRELESS-PITTNET.
- In the Join Wi-Fi network window, select EAP method: PEAP
- For Phase 2 authentication, select MSCHAPv2
- For Server CA certification, select Default
- In the Identity box, enter your University Computing Account username. (eg. abc1)
- In the Password box, enter your University Computing Account password.
(Remember. Hold ctrl+a to access admin password.)
Sorry. At the moment, image carousel requires either auto-play or user controls. See W3 carousel tutorial.
Time-out function
<!--Place within <HEAD></HEAD>. Refreshes index.html after 180 seconds-->
<meta http-equiv="refresh" content="180;url=index.html">
Stop video from playing in modal window.
</script> <!-- Stops video/audio from playing on modal close -->
<script>
$(function(){
$("body").on('hidden.bs.modal', function (e) {
var $iframes = $(e.target).find("iframe");
$iframes.each(function(index, iframe){
$(iframe).attr("src", $(iframe).attr("src"));
});
});
});
</script>