選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
778B

  1. void handleCmds( String cmd ) {
  2. String p = cmd;
  3. if (p.startsWith("f ")) {
  4. p.trim();
  5. p = p.substring(2);
  6. float t = p.toFloat();
  7. Serial.print("new frequency: ");
  8. Serial.println(t);
  9. AudioNoInterrupts(); // disable audio library momentarily
  10. sine.frequency(p.toFloat());
  11. AudioInterrupts(); // enable, both tones will start together
  12. }
  13. else if (p.startsWith("a ")) {
  14. p.trim();
  15. p = p.substring(2);
  16. float t = p.toFloat();
  17. Serial.print("new amplitude: ");
  18. Serial.println(t);
  19. AudioNoInterrupts(); // disable audio library momentarily
  20. sine.amplitude(p.toFloat());
  21. AudioInterrupts(); // enable, both tones will start together
  22. }
  23. }