Search in sources :

Example 1 with PeripheralManager

use of com.google.android.things.pio.PeripheralManager in project sample-button by androidthings.

the class ButtonActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.i(TAG, "Starting ButtonActivity");
    PeripheralManager pioService = PeripheralManager.getInstance();
    try {
        Log.i(TAG, "Configuring GPIO pins");
        mLedGpio = pioService.openGpio(BoardDefaults.getGPIOForLED());
        mLedGpio.setDirection(Gpio.DIRECTION_OUT_INITIALLY_LOW);
    } catch (IOException e) {
        Log.e(TAG, "Error configuring GPIO pins", e);
    }
    try {
        Log.i(TAG, "Registering button driver " + BoardDefaults.getGPIOForButton());
        // Initialize and register the InputDriver that will emit SPACE key events
        // on GPIO state changes.
        mButtonInputDriver = new ButtonInputDriver(BoardDefaults.getGPIOForButton(), Button.LogicState.PRESSED_WHEN_LOW, KeyEvent.KEYCODE_SPACE);
        mButtonInputDriver.register();
    } catch (IOException e) {
        Log.e(TAG, "Error configuring GPIO pins", e);
    }
}
Also used : ButtonInputDriver(com.google.android.things.contrib.driver.button.ButtonInputDriver) PeripheralManager(com.google.android.things.pio.PeripheralManager) IOException(java.io.IOException)

Example 2 with PeripheralManager

use of com.google.android.things.pio.PeripheralManager in project sample-tensorflow-imageclassifier by androidthings.

the class ImageClassifierActivity method initPIO.

/**
 * This method should only be called when running on an Android Things device.
 */
private void initPIO() {
    PeripheralManager pioManager = PeripheralManager.getInstance();
    try {
        mReadyLED = pioManager.openGpio(BoardDefaults.getGPIOForLED());
        mReadyLED.setDirection(Gpio.DIRECTION_OUT_INITIALLY_LOW);
        mButtonDriver = new ButtonInputDriver(BoardDefaults.getGPIOForButton(), Button.LogicState.PRESSED_WHEN_LOW, SHUTTER_KEYCODE);
        mButtonDriver.register();
    } catch (IOException e) {
        mButtonDriver = null;
        Log.w(TAG, "Could not open GPIO pins", e);
    }
}
Also used : ButtonInputDriver(com.google.android.things.contrib.driver.button.ButtonInputDriver) PeripheralManager(com.google.android.things.pio.PeripheralManager) IOException(java.io.IOException)

Example 3 with PeripheralManager

use of com.google.android.things.pio.PeripheralManager in project sample-simpleui by androidthings.

the class SimpleUiActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    LinearLayout gpioPinsView = findViewById(R.id.gpio_list);
    LayoutInflater inflater = getLayoutInflater();
    PeripheralManager pioManager = PeripheralManager.getInstance();
    for (String name : pioManager.getGpioList()) {
        View child = inflater.inflate(R.layout.list_item_gpio, gpioPinsView, false);
        Switch button = child.findViewById(R.id.gpio_switch);
        button.setText(name);
        gpioPinsView.addView(button);
        Log.d(TAG, "Added button for GPIO: " + name);
        try {
            final Gpio ledPin = pioManager.openGpio(name);
            ledPin.setEdgeTriggerType(Gpio.EDGE_NONE);
            ledPin.setActiveType(Gpio.ACTIVE_HIGH);
            ledPin.setDirection(Gpio.DIRECTION_OUT_INITIALLY_LOW);
            button.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    try {
                        ledPin.setValue(isChecked);
                    } catch (IOException e) {
                        Log.e(TAG, "error toggling gpio:", e);
                        buttonView.setOnCheckedChangeListener(null);
                        // reset button to previous state.
                        buttonView.setChecked(!isChecked);
                        buttonView.setOnCheckedChangeListener(this);
                    }
                }
            });
            mGpioMap.put(name, ledPin);
        } catch (IOException e) {
            Log.e(TAG, "Error initializing GPIO: " + name, e);
            // disable button
            button.setEnabled(false);
        }
    }
}
Also used : Switch(android.widget.Switch) LayoutInflater(android.view.LayoutInflater) PeripheralManager(com.google.android.things.pio.PeripheralManager) IOException(java.io.IOException) View(android.view.View) LinearLayout(android.widget.LinearLayout) Gpio(com.google.android.things.pio.Gpio) CompoundButton(android.widget.CompoundButton)

Example 4 with PeripheralManager

use of com.google.android.things.pio.PeripheralManager in project sample-googleassistant by androidthings.

the class AssistantActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.i(TAG, "starting assistant demo");
    setContentView(R.layout.activity_main);
    ListView assistantRequestsListView = findViewById(R.id.assistantRequestsListView);
    mAssistantRequestsAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, mAssistantRequests);
    mMainHandler = new Handler(getMainLooper());
    assistantRequestsListView.setAdapter(mAssistantRequestsAdapter);
    mButtonWidget = findViewById(R.id.assistantQueryButton);
    mButtonWidget.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View view) {
            mEmbeddedAssistant.startConversation();
        }
    });
    // Audio routing configuration: use default routing.
    AudioDeviceInfo audioInputDevice = null;
    AudioDeviceInfo audioOutputDevice = null;
    if (USE_VOICEHAT_I2S_DAC) {
        audioInputDevice = findAudioDevice(AudioManager.GET_DEVICES_INPUTS, AudioDeviceInfo.TYPE_BUS);
        if (audioInputDevice == null) {
            Log.e(TAG, "failed to find I2S audio input device, using default");
        }
        audioOutputDevice = findAudioDevice(AudioManager.GET_DEVICES_OUTPUTS, AudioDeviceInfo.TYPE_BUS);
        if (audioOutputDevice == null) {
            Log.e(TAG, "failed to found I2S audio output device, using default");
        }
    }
    try {
        if (USE_VOICEHAT_I2S_DAC) {
            Log.i(TAG, "initializing DAC trigger");
            mDac = VoiceHat.openDac();
            mDac.setSdMode(Max98357A.SD_MODE_SHUTDOWN);
            mButton = VoiceHat.openButton();
            mLed = VoiceHat.openLed();
        } else {
            PeripheralManager pioManager = PeripheralManager.getInstance();
            mButton = new Button(BoardDefaults.getGPIOForButton(), Button.LogicState.PRESSED_WHEN_LOW);
            mLed = pioManager.openGpio(BoardDefaults.getGPIOForLED());
        }
        mButton.setDebounceDelay(BUTTON_DEBOUNCE_DELAY_MS);
        mButton.setOnButtonEventListener(this);
        mLed.setDirection(Gpio.DIRECTION_OUT_INITIALLY_LOW);
        mLed.setActiveType(Gpio.ACTIVE_HIGH);
    } catch (IOException e) {
        Log.e(TAG, "error configuring peripherals:", e);
        return;
    }
    // Set volume from preferences
    SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
    int initVolume = preferences.getInt(PREF_CURRENT_VOLUME, DEFAULT_VOLUME);
    Log.i(TAG, "setting audio track volume to: " + initVolume);
    UserCredentials userCredentials = null;
    try {
        userCredentials = EmbeddedAssistant.generateCredentials(this, R.raw.credentials);
    } catch (IOException | JSONException e) {
        Log.e(TAG, "error getting user credentials", e);
    }
    mEmbeddedAssistant = new EmbeddedAssistant.Builder().setCredentials(userCredentials).setDeviceInstanceId(DEVICE_INSTANCE_ID).setDeviceModelId(DEVICE_MODEL_ID).setLanguageCode(LANGUAGE_CODE).setAudioInputDevice(audioInputDevice).setAudioOutputDevice(audioOutputDevice).setAudioSampleRate(SAMPLE_RATE).setAudioVolume(initVolume).setDeviceModelId(DEVICE_MODEL_ID).setDeviceInstanceId(DEVICE_INSTANCE_ID).setLanguageCode(LANGUAGE_CODE).setRequestCallback(new RequestCallback() {

        @Override
        public void onRequestStart() {
            Log.i(TAG, "starting assistant request, enable microphones");
            mButtonWidget.setText(R.string.button_listening);
            mButtonWidget.setEnabled(false);
        }

        @Override
        public void onSpeechRecognition(List<SpeechRecognitionResult> results) {
            for (final SpeechRecognitionResult result : results) {
                Log.i(TAG, "assistant request text: " + result.getTranscript() + " stability: " + Float.toString(result.getStability()));
                mAssistantRequestsAdapter.add(result.getTranscript());
            }
        }
    }).setConversationCallback(new ConversationCallback() {

        @Override
        public void onResponseStarted() {
            super.onResponseStarted();
            // When bus type is switched, the AudioManager needs to reset the stream volume
            if (mDac != null) {
                try {
                    mDac.setSdMode(Max98357A.SD_MODE_LEFT);
                } catch (IOException e) {
                    Log.e(TAG, "error enabling DAC", e);
                }
            }
        }

        @Override
        public void onResponseFinished() {
            super.onResponseFinished();
            if (mDac != null) {
                try {
                    mDac.setSdMode(Max98357A.SD_MODE_SHUTDOWN);
                } catch (IOException e) {
                    Log.e(TAG, "error disabling DAC", e);
                }
            }
            if (mLed != null) {
                try {
                    mLed.setValue(false);
                } catch (IOException e) {
                    Log.e(TAG, "cannot turn off LED", e);
                }
            }
        }

        @Override
        public void onError(Throwable throwable) {
            Log.e(TAG, "assist error: " + throwable.getMessage(), throwable);
        }

        @Override
        public void onVolumeChanged(int percentage) {
            Log.i(TAG, "assistant volume changed: " + percentage);
            // Update our shared preferences
            Editor editor = PreferenceManager.getDefaultSharedPreferences(AssistantActivity.this).edit();
            editor.putInt(PREF_CURRENT_VOLUME, percentage);
            editor.apply();
        }

        @Override
        public void onConversationFinished() {
            Log.i(TAG, "assistant conversation finished");
            mButtonWidget.setText(R.string.button_new_request);
            mButtonWidget.setEnabled(true);
        }

        @Override
        public void onAssistantResponse(final String response) {
            if (!response.isEmpty()) {
                mMainHandler.post(new Runnable() {

                    @Override
                    public void run() {
                        mAssistantRequestsAdapter.add("Google Assistant: " + response);
                    }
                });
            }
        }

        public void onDeviceAction(String intentName, JSONObject parameters) {
            if (parameters != null) {
                Log.d(TAG, "Get device action " + intentName + " with parameters: " + parameters.toString());
            } else {
                Log.d(TAG, "Get device action " + intentName + " with no paramete" + "rs");
            }
            if (intentName.equals("action.devices.commands.OnOff")) {
                try {
                    boolean turnOn = parameters.getBoolean("on");
                    mLed.setValue(turnOn);
                } catch (JSONException e) {
                    Log.e(TAG, "Cannot get value of command", e);
                } catch (IOException e) {
                    Log.e(TAG, "Cannot set value of LED", e);
                }
            }
        }
    }).build();
    mEmbeddedAssistant.connect();
}
Also used : SpeechRecognitionResult(com.google.assistant.embedded.v1alpha2.SpeechRecognitionResult) ListView(android.widget.ListView) Button(com.google.android.things.contrib.driver.button.Button) ArrayList(java.util.ArrayList) List(java.util.List) PeripheralManager(com.google.android.things.pio.PeripheralManager) AudioDeviceInfo(android.media.AudioDeviceInfo) SharedPreferences(android.content.SharedPreferences) Handler(android.os.Handler) JSONException(org.json.JSONException) ConversationCallback(com.example.androidthings.assistant.EmbeddedAssistant.ConversationCallback) IOException(java.io.IOException) View(android.view.View) ListView(android.widget.ListView) RequestCallback(com.example.androidthings.assistant.EmbeddedAssistant.RequestCallback) JSONObject(org.json.JSONObject) OnClickListener(android.view.View.OnClickListener) UserCredentials(com.google.auth.oauth2.UserCredentials) Editor(android.content.SharedPreferences.Editor)

Aggregations

PeripheralManager (com.google.android.things.pio.PeripheralManager)4 IOException (java.io.IOException)4 View (android.view.View)2 ButtonInputDriver (com.google.android.things.contrib.driver.button.ButtonInputDriver)2 SharedPreferences (android.content.SharedPreferences)1 Editor (android.content.SharedPreferences.Editor)1 AudioDeviceInfo (android.media.AudioDeviceInfo)1 Handler (android.os.Handler)1 LayoutInflater (android.view.LayoutInflater)1 OnClickListener (android.view.View.OnClickListener)1 CompoundButton (android.widget.CompoundButton)1 LinearLayout (android.widget.LinearLayout)1 ListView (android.widget.ListView)1 Switch (android.widget.Switch)1 ConversationCallback (com.example.androidthings.assistant.EmbeddedAssistant.ConversationCallback)1 RequestCallback (com.example.androidthings.assistant.EmbeddedAssistant.RequestCallback)1 Button (com.google.android.things.contrib.driver.button.Button)1 Gpio (com.google.android.things.pio.Gpio)1 SpeechRecognitionResult (com.google.assistant.embedded.v1alpha2.SpeechRecognitionResult)1 UserCredentials (com.google.auth.oauth2.UserCredentials)1