Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| using System.Collections.Generic; | |
| using UnityEditor; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| /// <summary> | |
| /// https://gist.github.com/alexmelyon/8f79bd08c79202d1570f26faefe47bf3 | |
| /// </summary> | |
| [ExecuteInEditMode] |
This tutorial will turn your Raspberry PI into a simple Bluetooth audio receiver, which plays music through connected speakers. It's like a regular car audio system, but it can be used anywhere and it's a good value.
Audio source (i.e. smartphone)
|
v
((( Wireless Bluetooth Channel )))
|
| /** | |
| * BMW IBus Daemon reads BMW IBus data through serial port. It detects | |
| * BMW board monitor(at least BM53) unit and steering wheel button presses | |
| * from IBus data, maps them to key events and injects them to system event | |
| * queue via uinput. | |
| * | |
| * It also can be configured to inject key events only in certain state like | |
| * TAPE or AUX which can be useful if you want to hijack for example TAPE | |
| * mode for other use. | |
| * |