| 68 | } |
| 69 | |
| 70 | void send_control(const int32_t index, const float value) const |
| 71 | { |
| 72 | char targetPath[std::strlen(path)+9]; |
| 73 | std::strcpy(targetPath, path); |
| 74 | std::strcat(targetPath, "/control"); |
| 75 | lo_send(addr, targetPath, "if", index, value); |
| 76 | } |
| 77 | |
| 78 | void send_midi(uchar data[4]) const |
| 79 | { |