Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Android
»
LAMW and BATTERY STATS
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[SOLVED] How to typecast ...
by
GetMem
[
Today
at 09:17:26 pm]
Lazarus Release 2.0.12
by
Martin_fr
[
Today
at 09:03:56 pm]
Download of FPC 3.2 for R...
by
Mi-Ki
[
Today
at 08:34:36 pm]
Using ffmpeg to capture v...
by
BosseB
[
Today
at 07:40:27 pm]
[Index] My Collections of...
by
OkobaPatino
[
Today
at 07:38:00 pm]
View Byte as Bits matrix
by
winni
[
Today
at 07:36:58 pm]
Fpcupdeluxe
by
DonAlfredo
[
Today
at 07:28:27 pm]
autocompletado automatico
by
delphin
[
Today
at 07:20:24 pm]
No puedo conectar a SQLit...
by
delphin
[
Today
at 07:17:43 pm]
BGRABitmap - Paragraph wi...
by
circular
[
Today
at 06:55:20 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: LAMW and BATTERY STATS (Read 949 times)
benohb
Full Member
Posts: 201
LAMW and BATTERY STATS
«
on:
August 01, 2020, 03:25:06 am »
Is there a way to know the voltage and amps
Logged
https://github.com/benohb/
jmpessoa
Hero Member
Posts: 1779
Re: LAMW and BATTERY STATS
«
Reply #1 on:
August 01, 2020, 04:39:36 am »
Hello, benohb!
Can you point up some java/android code example?
[If yes, I can try implement a LAMW pascal code wrapper ....]
«
Last Edit: August 01, 2020, 04:41:17 am by jmpessoa
»
Logged
Lamw: Lazarus Android Module Wizard
https://github.com/jmpessoa/lazandroidmodulewizard
benohb
Full Member
Posts: 201
Re: LAMW and BATTERY STATS
«
Reply #2 on:
August 01, 2020, 11:47:20 am »
https://www.programcreek.com/java-api-examples/?class=android.content.Intent&method=ACTION_BATTERY_CHANGED
Logged
https://github.com/benohb/
benohb
Full Member
Posts: 201
Re: LAMW and BATTERY STATS
«
Reply #3 on:
August 01, 2020, 04:38:04 pm »
Oh yes
BatteryManager Just a struct
https://android.googlesource.com/platform/frameworks/base/+/2164cf4f4043b4892db5688ed53624af758fcdaa/core/java/android/os/BatteryManager.java
so ...
Code: Pascal
[Select]
[+]
[-]
jBroadcastReceiver1
.
IntentActionFilter
:
=
afBatteryChanged
;
and
Code: Pascal
[Select]
[+]
[-]
procedure
TAndroidModule1
.
jBroadcastReceiver1Receiver
(
Sender
:
TObject
;
intent
:
jObject
)
;
begin
ShowMessage
(
'Broadc: '
+
inttostr
(
jIntentManager1
.
GetExtraInt
(
intent
,
'voltage'
)
)
)
;
end
;
Work
@jmpessoa
I am in developer mode. Will I need some type of permissions after release َAPK ??
Logged
https://github.com/benohb/
jmpessoa
Hero Member
Posts: 1779
Re: LAMW and BATTERY STATS
«
Reply #4 on:
August 03, 2020, 01:59:04 am »
From LAMW/docs:
https://github.com/jmpessoa/lazandroidmodulewizard/blob/master/docs/How_To_Get_Your_Signed_Release_Apk.txt
Logged
Lamw: Lazarus Android Module Wizard
https://github.com/jmpessoa/lazandroidmodulewizard
benohb
Full Member
Posts: 201
Re: LAMW and BATTERY STATS
«
Reply #5 on:
August 05, 2020, 01:15:09 am »
Thank you jmpessoa
Also, my thanks to you about JmyHello (The empty component) It helped me a lot with making a new battery component
Logged
https://github.com/benohb/
jmpessoa
Hero Member
Posts: 1779
Re: LAMW and BATTERY STATS
«
Reply #6 on:
August 05, 2020, 03:12:49 am »
Quote
It helped me a lot with making a new battery component..
Can you publish it?
Hint:
https://github.com/jmpessoa/lazandroidmodulewizard/blob/master/docs/how_to_create_new_components.txt
Logged
Lamw: Lazarus Android Module Wizard
https://github.com/jmpessoa/lazandroidmodulewizard
benohb
Full Member
Posts: 201
Re: LAMW and BATTERY STATS
«
Reply #7 on:
August 09, 2020, 02:00:26 am »
jmpessoa
battery component…
It has dependencies with
Code: Pascal
[Select]
[+]
[-]
jBatteryManager
=
class
(
jControl
)
private
FOnReceiver
:
TOnReceiver
;
Broadcast
:
jBroadcastReceiver
;
jIntentManager1
:
jIntentManager
;
The problem is that Lazarus puts them above the window automatically (
jBroadcastReceiver and
jIntentManager
)
I need them because the battery class element is not available in API <21
«
Last Edit: August 09, 2020, 02:02:19 am by benohb
»
Logged
https://github.com/benohb/
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Android
»
LAMW and BATTERY STATS
TinyPortal
© 2005-2018