How to read Data ? #947
Unanswered
wysixontheflux
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have to work on a native react application for work, but it's not exactly my field, I'm basically an engineer and not a developer, I try to follow the documentation but I'm having a little trouble.
This is my code :
import { Button } from "react-native";
import BleManager from "react-native-ble-manager";
const FetchData = () => {
const action = () => {
BleManager.start({showAlert : true}).then(() => {console.log('Blemanager Start')});
}
return(
<Button title={"show"} onPress={action} />
)
}
export default FetchData
Start, connect, retrieveservices is functionnal but i can't read data from my arduino ( HM-10 bluetooth module )
When i log the data of read, it return me the mac adresse in hexa of my HM-10 module.
Someone can help me please ?
Beta Was this translation helpful? Give feedback.
All reactions