duerapp_event.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Copyright (2017) Baidu Inc. All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /**
  17. * File: event.c
  18. * Auth: Renhe Zhang (v_zhangrenhe@baidu.com)
  19. * Desc: Duer Application Key definition.
  20. * Blocking loop function.
  21. */
  22. #ifndef BAIDU_DUER_LIBDUER_DEVICE_EXAMPLES_DCS3_LINUX_DUERAPP_EVENT_H
  23. #define BAIDU_DUER_LIBDUER_DEVICE_EXAMPLES_DCS3_LINUX_DUERAPP_EVENT_H
  24. enum duer_kbd_events{
  25. PLAY_PAUSE = 0x7A, // z
  26. RECORD_START = 0x78, // x
  27. PREVIOUS_SONG = 0x61, // a
  28. VOICE_MODE = 0x63, // c
  29. NEXT_SONG = 0x64, // d
  30. VOLUME_INCR = 0x77, // w
  31. VOLUME_DECR = 0x73, // s
  32. VOLUME_MUTE = 0x65, // e
  33. QUIT = 0x71, // q
  34. };
  35. void duer_event_loop();
  36. void duer_voice_mode_translate_record();
  37. #endif // BAIDU_DUER_LIBDUER_DEVICE_EXAMPLES_DCS3_LINUX_DUERAPP_EVENT_H