All Projects → androidthings → Weatherstation

androidthings / Weatherstation

Licence: apache-2.0
Sensor-based peripheral sample using Android Things

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Weatherstation

Contrib Drivers
Open source peripheral drivers
Stars: ✭ 539 (+156.67%)
Mutual labels:  android-things
Sample Usbenum
Discover connected devices using the Android USB Host APIs
Stars: ✭ 81 (-61.43%)
Mutual labels:  android-things
Sample Bluetooth Audio
Bluetooth A2DP sample using Android Things
Stars: ✭ 146 (-30.48%)
Mutual labels:  android-things
Libaums
Open source library to access USB Mass Storage devices on Android without rooting your device
Stars: ✭ 769 (+266.19%)
Mutual labels:  android-things
Androidthings Drivers
Android Things open source peripheral drivers
Stars: ✭ 30 (-85.71%)
Mutual labels:  android-things
Android Robocar
Build your own robocar, remote-controlled or autonomous, with Android Things.
Stars: ✭ 95 (-54.76%)
Mutual labels:  android-things
Lantern
Transform any surface into mixed-reality using Raspberry Pi, a laser projector, and Android Things.
Stars: ✭ 403 (+91.9%)
Mutual labels:  android-things
Sample Bluetooth Le Gattserver
Build a Bluetooth GATT server with Android Things
Stars: ✭ 159 (-24.29%)
Mutual labels:  android-things
Android Sitemap
👓 Every link ever to Android Developer site.
Stars: ✭ 61 (-70.95%)
Mutual labels:  android-things
Android Things Electricity Monitor
Electricity Monitor using Android Things and Firebase Realtime Database
Stars: ✭ 118 (-43.81%)
Mutual labels:  android-things
Androidthings rainbowhatdemo
This Android Things project executes all the hardware that is on the Pimoroni Rainbow HAT for Android Things and Raspberry Pi 3
Stars: ✭ 17 (-91.9%)
Mutual labels:  android-things
Androidthings Googleassistant
Integrate Google Assistant into Android Things
Stars: ✭ 28 (-86.67%)
Mutual labels:  android-things
Sample Button
Basic input and output using a button and LED
Stars: ✭ 107 (-49.05%)
Mutual labels:  android-things
Sample Tensorflow Imageclassifier
Classify camera images locally using TensorFlow models
Stars: ✭ 623 (+196.67%)
Mutual labels:  android-things
Jlibmodbus
JLibModbus is an implementation of the Modbus protocol v1.1b in java language.
Stars: ✭ 149 (-29.05%)
Mutual labels:  android-things
Sample Googleassistant
Google Assistant API sample for Android Things
Stars: ✭ 460 (+119.05%)
Mutual labels:  android-things
Surviving With Android
Source code related to the posts in the blog
Stars: ✭ 1,275 (+507.14%)
Mutual labels:  android-things
Sample Simplepio
Basic Peripheral I/O examples with Android Things
Stars: ✭ 191 (-9.05%)
Mutual labels:  android-things
Drivers Samples
Peripheral driver samples
Stars: ✭ 153 (-27.14%)
Mutual labels:  android-things
Sample Simpleui
Connect GPIO states with a graphical UI on Android Things
Stars: ✭ 116 (-44.76%)
Mutual labels:  android-things

Weather Station

This sample integrates multiple Android Things peripheral drivers together to build a connected Weather Station.

Screenshots

Weather Station sample demo

(Watch the demo on YouTube)

Pre-requisites

Schematics

If you have the Raspberry Pi Rainbow Hat for Android Things, just plug it onto your Raspberry Pi 3.

Schematics for Raspberry Pi 3

Build and install

On Android Studio, click on the "Run" button. If you prefer to run on the command line, type

./gradlew installDebug
adb shell am start com.example.androidthings.weatherstation/.WeatherStationActivity

If you have everything set up correctly:

  • The segment display will show the current temperature.
  • If the button is pressed, the display will show the current pressure.
  • If a Piezo Buzzer is connected, it will plays a funny sound on startup.
  • If a APA102 RGB Led strip is connected, it will display a rainbow of 7 pixels indicating the current pressure.
  • If a Google Cloud Platform project is configured (see instruction below), it will publish the sensor data to Google Cloud PubSub.

Google Cloud Platform configuration (optional)

  1. Go to your project in the Google Cloud Platform console
  2. Under API Manager, enable the following APIs: Cloud Pub/Sub
  3. Under IAM & Admin, create a new Service Account, provision a new private key and save the generated json credentials.
  4. Under Pub/Sub: create a new topic and in the Permissions add the service account created in the previous step with the role Pub/Sub Publisher.
  5. Under Pub/Sub: create a new Pull subscription on your new topic.
  6. Import the project into Android Studio. Add a file named credentials.json inside app/src/main/res/raw/ with the contents of the credentials you downloaded in the previous steps.
  7. In app/build.gradle, replace the buildConfigField values with values from your project setup.

After running the sample, you can check that your data is ingested in Google Cloud Pub/Sub by running the following command:

gcloud --project <CLOUD_PROJECT_ID> beta pubsub subscriptions pull <PULL_SUBSCRIBTION_NAME>

Note: If there is no credentials.json file in app/src/main/res/raw, the app will run offline and will not send sensor data to the Google Cloud Pub/Sub.

Next steps

Now your weather sensor data is continuously being published to Google Cloud Pub/Sub:

Enable auto-launch behavior

This sample app is currently configured to launch only when deployed from your development machine. To enable the main activity to launch automatically on boot, add the following intent-filter to the app's manifest file:

<activity ...>

    <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.HOME"/>
        <category android:name="android.intent.category.DEFAULT"/>
    </intent-filter>

</activity>

License

Copyright 2016 The Android Open Source Project, Inc.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].