This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* TJBot Pumpkin | |
* | |
* Three IBM Watson services are needed, Speech to Text, Text to Speech, and Tone Analyzer. Create these services at https://bluemix.net. Copy the corresponding API keys into the code below. | |
*/ | |
var TJBot = require("tjbot"); | |
var tj = new TJBot( | |
["microphone","led","speaker"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<h3>Hello world!</h3> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Maze bouncer | |
// By JeanCarl Bisson (@dothewww) | |
#include <Adafruit_NeoPixel.h> | |
#include <Adafruit_GFX.h> | |
#include <Adafruit_NeoMatrix.h> | |
#include "RGB.h" | |
#define PIN 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* DQuid Library | |
* | |
* Retrieves values from a Bay Tek Game machine given the serial number. | |
* / | |
class Dquid | |
{ | |
var $serial_number; |