Home
Explore
Submit Search
Upload
Login
Signup
Advertisement
Check these out next
Advanced View Arduino Projects List _ Use Arduino for Projects {4}.pdf
WiseNaeem
Teardown Conference: hacking appliances with netduino + xamarin
bryan costanich
Hardware hackers - hacking appliances with netduino + xamarin
bryan costanich
Advanced view of projects raspberry pi list raspberry pi projects
WiseNaeem
Advanced View Arduino Projects List - Use Arduino for Projects {4}.pdf
Ismailkhan77481
Android Things - The IoT platform from Google
Emmanuel Obot
Advanced view arduino projects list use arduino for projects (5)
WiseNaeem
Better With Friends: Android+NFC+Arduino
Pearl Chen
1
of
20
Top clipped slide
IotCeption - Energy Measurement of Android Things on Raspberry PI 3 with Arduino Uno
Apr. 13, 2017
•
0 likes
0 likes
×
Be the first to like this
Show More
•
900 views
views
×
Total views
0
On Slideshare
0
From embeds
0
Number of embeds
0
Download Now
Download to read offline
Report
Technology
Android Makers 2017 Paris - http://androidmakers.fr/
Olivier Philippot
Follow
CTO of Greenspector & Software Eco-design expert at GREENSPECTOR
Advertisement
Advertisement
Advertisement
Recommended
IotCeption - Energy Measurement of Android Things on Raspberry PI 3 with Ardu...
Olivier Philippot
456 views
•
29 slides
Energy Data Streaming – Decentral Energy Distribution in a Digital World
confluent
2.2K views
•
14 slides
Open Energy. Prototyping Third Industrial Revolution
Fran Castillo
499 views
•
24 slides
Ramudroid v7.0
ALTANAI BISHT
380 views
•
50 slides
Gavin Starks at TEDxNYC
AMEE
532 views
•
13 slides
Hackaday ramudroid 6.5
ALTANAI BISHT
555 views
•
45 slides
More Related Content
Similar to IotCeption - Energy Measurement of Android Things on Raspberry PI 3 with Arduino Uno
(20)
Advanced View Arduino Projects List _ Use Arduino for Projects {4}.pdf
WiseNaeem
•
3 views
Teardown Conference: hacking appliances with netduino + xamarin
bryan costanich
•
85 views
Hardware hackers - hacking appliances with netduino + xamarin
bryan costanich
•
388 views
Advanced view of projects raspberry pi list raspberry pi projects
WiseNaeem
•
33 views
Advanced View Arduino Projects List - Use Arduino for Projects {4}.pdf
Ismailkhan77481
•
11 views
Android Things - The IoT platform from Google
Emmanuel Obot
•
706 views
Advanced view arduino projects list use arduino for projects (5)
WiseNaeem
•
20 views
Better With Friends: Android+NFC+Arduino
Pearl Chen
•
5.1K views
Tech days2013 netgadgeteer rec202
Scarlet Schwiderski-Grosche
•
437 views
Android Things - The IoT platform for everyone.
DVT - Smart people. Smart solutions.
•
1K views
Advanced View Arduino Projects List _ Use Arduino for Projects {3}.pdf
WiseNaeem
•
3 views
Advanced View Arduino Projects List - Use Arduino for Projects [04].pdf
WiseNaeem
•
5 views
Pre meetup intel® roadshow london
Hugo Espinosa
•
741 views
Hack the Real World with ANDROID THINGS
DevFest DC
•
288 views
Getting Started with the Internet of Things - Allianz Hackrisk Hackathon 29/...
The Internet of Things Methodology
•
2.8K views
Iot andriod app development
AbhinavKumarMeena
•
101 views
Advanced View Arduino Projects List - Use Arduino for Projects-2.pdf
WiseNaeem
•
7 views
home automation using raspberry pi
vatsal jat
•
711 views
ควบคุมบอร์ดArduinoผ่านระบบandroid
Worakrit Sittirit
•
959 views
MIT App Inventor + Arduino + Bluetooth
mike parks
•
21.4K views
Recently uploaded
(20)
Open Data Center Interconnect Products and Solutions Brochure -GL.pdf
Gigalight
•
3 views
Unlock the power of MLOps.pdf
StephenAmell4
•
0 views
Vin secure solutions PPT (1).pdf
vin secure solutions
•
0 views
The Benefits of Adopting the Lamp Tech Stack: A Comprehensive Guide:
Brain Inventory
•
0 views
W-6-7-Ch-5-Tank Suspension system.pptx
vishnoo7
•
0 views
Valere Project Portfolio June 2023
Alexander Turgeon
•
0 views
Harnessing AI and Web3 for Operators
AndyHall865717
•
0 views
Level Up Your Property and Investment Management Workflows
AppFolio
•
0 views
Digital Mining Solutions Simplified With VTPL
UpasnaBagrodia
•
0 views
GIGALIGHT-Optical Transceiver SiPh MZ Quad Operating Point Locking
Gigalight
•
0 views
wasp_2023.pdf
Felix Dobslaw
•
0 views
Untitled presentation.pdf
SompriyaNarayanaTiwa
•
0 views
AES.ppt
BincySam2
•
2 views
Trane THT2212-SPST Therm Cutoff; 265Op 35C-PartsHnC.pdf
PartsHnC Hvac Parts
•
0 views
Change your architecture during deployment
Dennis van der Stelt
•
0 views
Temporary Tattoo.pdf
DevDeshpande2
•
3 views
Python Strings.pptx
M Vishnuvardhan Reddy
•
0 views
Python Sets_Dictionary.pptx
M Vishnuvardhan Reddy
•
0 views
independent researcher
amanvijayjindal
•
0 views
Qualys API
Giacomo Cocozziello
•
0 views
Advertisement
IotCeption - Energy Measurement of Android Things on Raspberry PI 3 with Arduino Uno
IotCeption Energy Measurement of Android Things on Raspberry PI 3 with Arduino Uno [Olivier Philippot - @simplygreenit]
Who I am? CTO Greenspector @simplygreenit
Why you need to measure energy ?
In Classical Android import android.os.BatteryManager; import android.content.Context; BatteryManager
mBatteryManager = (BatteryManager)Context.getSystemService(Context.BATTERY_SERVICE); Long energy = mBatteryManager.getLongProperty(BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER); Slog.i(TAG, "Remaining energy = " + energy + "nWh");
Energy ...
The project schema ... Shunt : INA219
I2C Interface
In real life
Android Things
The project under test 1 Raspberry Pi 3 1 Screen + 1 HDMI (Optional) 1 Ethernet 1 USB Cable for power (With some modifications) 1 micro SDCard 1 Rainbow Hat project
Why so much hate? I2C can be read on Android Things ?
Arduino to measure Arduino IDE + INA219 Library (C) shuntvoltage = ina219.getShuntVoltage_mV(); busvoltage
= ina219.getBusVoltage_V(); current_uA = ina219.getCurrent_mA()*1000; loadvoltage = busvoltage + (shuntvoltage / 1000); poweruWh = loadvoltage * current_uA; Serial.println(poweruWh); delay(100);
Serial reading on PC
Serial reading in golang In Arduino program : Serial.begin(115200); Serial library in Go: github.com/goburrow/serial flag.StringVar(&address, "a", "/dev/ttyACM0",
"address") flag.IntVar(&baudrate, "b", 115200, "baud rate") flag.IntVar(&databits, "d", 8, "data bits") flag.IntVar(&stopbits, "s", 2, "stop bits") flag.StringVar(&parity, "p", "N", "parity (N/E/O)")
Making an computer oscillo Highchart which read the data : http://localhost:8000/
Now we can play...
Results
Autonomy ? 1,4w in continuous / 5v = 280mAh 3000mAh battery ~ 11h of autonomy 2w in continuous / 5v = 400mAh 3000mAh battery ~ 7,5h of autonomy
Conclusion : Measure, Measure and Measure For Energy questions : @simplygreenit
Advertisement