Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

igrik12/cpu_reader

Repository files navigation

cpu_reader

A basic CPU reader that provides a simple way of retrieving device CPU info (Currently only supports Android).

Usage

Import package:device_info/device_info.dart, use CpuReader getters to get device CPU information.

Example:

import 'package:cpu_reader/cpu_reader.dart';
import 'package:cpu_reader/cpuinfo.dart';

CpuInfo cpuInfo = await CpuReader.cpuInfo;
print('Number of Cores ${cpuInfo.numberOfCores}');

int freq = await CpuReader.getCurrentFrequency(2);
print('Core number 2 freq ${freq} Mhz');

CpuReader.cpuStream(1000).listen((cpuInfo) => print("Temperature: ${cpuInfo.cpuTemperature}"))

About

Flutter CPU reader

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors