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
| Output of `tree` in the SD-card that came with the Rample. | |
| . | |
| ├── A0 | |
| │ ├── 1 KICK LOW 01.wav | |
| │ ├── 1 KICK LOW 02.wav | |
| │ ├── 1 KICK LOW 03.wav | |
| │ ├── 1 KICK LOW 04.wav | |
| │ ├── 1 KICK LOW 05.wav | |
| │ ├── 1 KICK LOW 06.wav |
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 | |
| define('CRLF', "\r\n"); | |
| class HaveToWork extends Thread { | |
| protected $wait; | |
| public $socket = null; | |
| public function __construct() { | |
| $this->wait = true; | |
| $this->start(); | |
| } | |
| public function run() { |