SDG+USBHost(Mouse) Sample

Dependencies:   Sound_Generator USBHost_custom

Fork of SDG_Mouse_Sample by GR-PEACH_producer_meeting

Information

Japanese version is available in lower part of this page.
このページの後半に日本語版が用意されています.

What is this?

This program is a demonstration that sounds the sound by mouse operation by using USBHost(Mouse) and Sound Generator.

Settings

Close JP3 of GR-PEACH.
/media/uploads/RyoheiHagimoto/sdg-mouse.jpg

Operation

operationeffect
Right clickSounds
Left clickReset to base tone (C)
Moves the mouse to the rightLower the sound
Moves the mouse to the leftHigher the sound
Center cursorAdjust the sensitivity.
Reset the reference value in the click.

Others

The default setting of serial communication (baud rate etc.) in mbed is shown the following link.
Please refer to the link and change the settings of your PC terminal software.
The default value of baud rate in mbed is 9600, and this application uses baud rate 9600.
https://developer.mbed.org/teams/Renesas/wiki/GR-PEACH-Getting-Started#install-the-usb-serial-communication


概要

このプログラムは、USBHost(Mouse) + Sound Generatorで、マウス操作による擬似笛デモです。

設定

GR-PEACHのJP3をショートする必要があります。
/media/uploads/RyoheiHagimoto/sdg-mouse.jpg

操作方法

操作内容
右クリック音出力開始
左クリック基準音(ド)にリセット
マウス右移動高音になります
マウス左移動低音になります
センターカーソル音高低の変化量調整(クリックで基準値にリセット)

Others

mbedのシリアル通信(ボーレート等)のデフォルト設定は以下のリンクに示しています。
リンクを参考に、お使いのPCターミナルソフトの設定を変更して下さい。
mbedでのボーレートのデフォルト値は9600で、このサンプルではボーレート9600を使います。
https://developer.mbed.org/teams/Renesas/wiki/GR-PEACH-Getting-Started#install-the-usb-serial-communication

Committer:
mbed_official
Date:
Tue Jun 03 11:30:38 2014 +0100
Revision:
24:868cbfe611a7
Parent:
8:93da8ea2708b
Synchronized with git revision bcacbb9fbf3432829227430830cca4315b57c1b9

Full URL: https://github.com/mbedmicro/mbed/commit/bcacbb9fbf3432829227430830cca4315b57c1b9/

Who changed what in which revision?

UserRevisionLine numberNew contents of line
samux 8:93da8ea2708b 1 /* mbed USBHost Library
samux 8:93da8ea2708b 2 * Copyright (c) 2006-2013 ARM Limited
samux 8:93da8ea2708b 3 *
samux 8:93da8ea2708b 4 * Licensed under the Apache License, Version 2.0 (the "License");
samux 8:93da8ea2708b 5 * you may not use this file except in compliance with the License.
samux 8:93da8ea2708b 6 * You may obtain a copy of the License at
samux 8:93da8ea2708b 7 *
samux 8:93da8ea2708b 8 * http://www.apache.org/licenses/LICENSE-2.0
samux 8:93da8ea2708b 9 *
samux 8:93da8ea2708b 10 * Unless required by applicable law or agreed to in writing, software
samux 8:93da8ea2708b 11 * distributed under the License is distributed on an "AS IS" BASIS,
samux 8:93da8ea2708b 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
samux 8:93da8ea2708b 13 * See the License for the specific language governing permissions and
samux 8:93da8ea2708b 14 * limitations under the License.
samux 8:93da8ea2708b 15 */
mbed_official 0:a554658735bf 16
mbed_official 0:a554658735bf 17 #ifndef USBHOSTMOUSE_H
mbed_official 0:a554658735bf 18 #define USBHOSTMOUSE_H
mbed_official 0:a554658735bf 19
mbed_official 0:a554658735bf 20 #include "USBHostConf.h"
mbed_official 0:a554658735bf 21
mbed_official 0:a554658735bf 22 #if USBHOST_MOUSE
mbed_official 0:a554658735bf 23
mbed_official 0:a554658735bf 24 #include "USBHost.h"
mbed_official 0:a554658735bf 25
mbed_official 24:868cbfe611a7 26 /**
samux 1:0a457e34fa9e 27 * A class to communicate a USB mouse
samux 1:0a457e34fa9e 28 */
mbed_official 0:a554658735bf 29 class USBHostMouse : public IUSBEnumerator {
mbed_official 0:a554658735bf 30 public:
mbed_official 0:a554658735bf 31
mbed_official 0:a554658735bf 32 /**
mbed_official 0:a554658735bf 33 * Constructor
mbed_official 0:a554658735bf 34 */
mbed_official 0:a554658735bf 35 USBHostMouse();
mbed_official 0:a554658735bf 36
mbed_official 0:a554658735bf 37 /**
mbed_official 0:a554658735bf 38 * Try to connect a mouse device
mbed_official 0:a554658735bf 39 *
samux 3:0f5c32575eb8 40 * @return true if connection was successful
mbed_official 0:a554658735bf 41 */
mbed_official 0:a554658735bf 42 bool connect();
mbed_official 0:a554658735bf 43
mbed_official 0:a554658735bf 44 /**
mbed_official 0:a554658735bf 45 * Check if a mouse is connected
mbed_official 0:a554658735bf 46 *
mbed_official 0:a554658735bf 47 * @returns true if a mouse is connected
mbed_official 0:a554658735bf 48 */
mbed_official 0:a554658735bf 49 bool connected();
mbed_official 0:a554658735bf 50
mbed_official 0:a554658735bf 51 /**
mbed_official 0:a554658735bf 52 * Attach a callback called when a mouse event is received
mbed_official 0:a554658735bf 53 *
samux 2:5e8fdc541b98 54 * @param ptr function pointer
mbed_official 0:a554658735bf 55 */
samux 5:e48791a1ef18 56 inline void attachEvent(void (*ptr)(uint8_t buttons, int8_t x, int8_t y, int8_t z)) {
mbed_official 0:a554658735bf 57 if (ptr != NULL) {
mbed_official 0:a554658735bf 58 onUpdate = ptr;
mbed_official 0:a554658735bf 59 }
mbed_official 0:a554658735bf 60 }
mbed_official 24:868cbfe611a7 61
samux 5:e48791a1ef18 62 /**
samux 5:e48791a1ef18 63 * Attach a callback called when the button state changes
samux 5:e48791a1ef18 64 *
samux 5:e48791a1ef18 65 * @param ptr function pointer
samux 5:e48791a1ef18 66 */
samux 5:e48791a1ef18 67 inline void attachButtonEvent(void (*ptr)(uint8_t buttons)) {
samux 5:e48791a1ef18 68 if (ptr != NULL) {
samux 5:e48791a1ef18 69 onButtonUpdate = ptr;
samux 5:e48791a1ef18 70 }
samux 5:e48791a1ef18 71 }
mbed_official 24:868cbfe611a7 72
samux 5:e48791a1ef18 73 /**
samux 5:e48791a1ef18 74 * Attach a callback called when the X axis value changes
samux 5:e48791a1ef18 75 *
samux 5:e48791a1ef18 76 * @param ptr function pointer
samux 5:e48791a1ef18 77 */
samux 5:e48791a1ef18 78 inline void attachXEvent(void (*ptr)(int8_t x)) {
samux 5:e48791a1ef18 79 if (ptr != NULL) {
samux 5:e48791a1ef18 80 onXUpdate = ptr;
samux 5:e48791a1ef18 81 }
samux 5:e48791a1ef18 82 }
mbed_official 24:868cbfe611a7 83
samux 5:e48791a1ef18 84 /**
samux 5:e48791a1ef18 85 * Attach a callback called when the Y axis value changes
samux 5:e48791a1ef18 86 *
samux 5:e48791a1ef18 87 * @param ptr function pointer
samux 5:e48791a1ef18 88 */
samux 5:e48791a1ef18 89 inline void attachYEvent(void (*ptr)(int8_t y)) {
samux 5:e48791a1ef18 90 if (ptr != NULL) {
samux 5:e48791a1ef18 91 onYUpdate = ptr;
samux 5:e48791a1ef18 92 }
samux 5:e48791a1ef18 93 }
mbed_official 24:868cbfe611a7 94
samux 5:e48791a1ef18 95 /**
samux 5:e48791a1ef18 96 * Attach a callback called when the Z axis value changes (scrolling)
samux 5:e48791a1ef18 97 *
samux 5:e48791a1ef18 98 * @param ptr function pointer
samux 5:e48791a1ef18 99 */
samux 5:e48791a1ef18 100 inline void attachZEvent(void (*ptr)(int8_t z)) {
samux 5:e48791a1ef18 101 if (ptr != NULL) {
samux 5:e48791a1ef18 102 onZUpdate = ptr;
samux 5:e48791a1ef18 103 }
samux 5:e48791a1ef18 104 }
mbed_official 0:a554658735bf 105
mbed_official 0:a554658735bf 106 protected:
mbed_official 0:a554658735bf 107 //From IUSBEnumerator
mbed_official 0:a554658735bf 108 virtual void setVidPid(uint16_t vid, uint16_t pid);
mbed_official 0:a554658735bf 109 virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol); //Must return true if the interface should be parsed
mbed_official 0:a554658735bf 110 virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir); //Must return true if the endpoint will be used
mbed_official 0:a554658735bf 111
mbed_official 0:a554658735bf 112 private:
mbed_official 0:a554658735bf 113 USBHost * host;
mbed_official 0:a554658735bf 114 USBDeviceConnected * dev;
mbed_official 0:a554658735bf 115 USBEndpoint * int_in;
mbed_official 0:a554658735bf 116 uint8_t report[4];
mbed_official 24:868cbfe611a7 117
mbed_official 0:a554658735bf 118 bool dev_connected;
mbed_official 0:a554658735bf 119 bool mouse_device_found;
mbed_official 0:a554658735bf 120 int mouse_intf;
mbed_official 0:a554658735bf 121
samux 5:e48791a1ef18 122 uint8_t buttons;
samux 5:e48791a1ef18 123 int8_t x;
samux 5:e48791a1ef18 124 int8_t y;
samux 5:e48791a1ef18 125 int8_t z;
samux 5:e48791a1ef18 126
mbed_official 0:a554658735bf 127 void rxHandler();
mbed_official 0:a554658735bf 128 void (*onUpdate)(uint8_t buttons, int8_t x, int8_t y, int8_t z);
samux 5:e48791a1ef18 129 void (*onButtonUpdate)(uint8_t buttons);
samux 5:e48791a1ef18 130 void (*onXUpdate)(int8_t x);
samux 5:e48791a1ef18 131 void (*onYUpdate)(int8_t y);
samux 5:e48791a1ef18 132 void (*onZUpdate)(int8_t z);
mbed_official 0:a554658735bf 133 int report_id;
mbed_official 0:a554658735bf 134 void init();
mbed_official 0:a554658735bf 135 };
mbed_official 0:a554658735bf 136
mbed_official 0:a554658735bf 137 #endif
mbed_official 0:a554658735bf 138
mbed_official 0:a554658735bf 139 #endif