Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Android
»
LAMW and BATTERY STATS
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
four squares (inc)
by
speter
[
Today
at 11:25:05 am]
Stacked bars not drawn pr...
by
apeoperaio
[
Today
at 10:29:45 am]
Regarding the issue of de...
by
Martin_fr
[
Today
at 10:20:35 am]
Dice (raylib + kraft phys...
by
fcu
[
Today
at 09:01:24 am]
CudaText editor (written ...
by
AlexTP
[
Today
at 07:57:52 am]
Lazarus seems to be makin...
by
Boleeman
[
Today
at 07:54:25 am]
[SOLVED] Lazreport PDF
by
Petrus Vorster
[
Today
at 07:42:59 am]
Maze Makers: Modified Cyl...
by
Boleeman
[
Today
at 07:20:10 am]
How to set the Excel cell...
by
dodgex
[
Today
at 04:51:41 am]
[SOLVED] Assembler error ...
by
Thausand
[
Today
at 01:25:35 am]
Embedded qss stylesheets ...
by
jns
[January 14, 2026, 11:27:39 pm]
New book on Object Pascal
by
BodgerBen
[January 14, 2026, 10:32:05 pm]
TSpeedButton qt6 styleshe...
by
big_M
[January 14, 2026, 04:53:29 pm]
How to prevent onDropFile...
by
Hansaplast
[January 14, 2026, 04:51:23 pm]
The compiler fails to war...
by
Martin_fr
[January 14, 2026, 03:53:06 pm]
Linked List Using Two Cla...
by
Thaddy
[January 14, 2026, 03:39:08 pm]
unit init, finalize and i...
by
Zvoni
[January 14, 2026, 02:48:57 pm]
Locate current record aft...
by
Zvoni
[January 14, 2026, 09:59:08 am]
Drag and Drop Files; onDr...
by
Hansaplast
[January 14, 2026, 09:39:25 am]
Lazarus and Libre Office
by
MarkMLl
[January 14, 2026, 09:22:14 am]
scat bikes (inc)
by
speter
[January 14, 2026, 04:38:11 am]
Effect of adding properti...
by
n7800
[January 14, 2026, 04:13:36 am]
solution for installing F...
by
BradleySlavik
[January 14, 2026, 02:37:22 am]
What was your first compu...
by
CM630
[January 13, 2026, 10:09:19 pm]
Dragging files to .app no...
by
Boleeman
[January 13, 2026, 10:06:09 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: LAMW and BATTERY STATS (Read 3016 times)
benohb
Full Member
Posts: 218
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: 2330
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: 218
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: 218
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: 2330
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: 218
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: 2330
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: 218
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