-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathBLE.js
37 lines (32 loc) · 1.01 KB
/
BLE.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from 'react';
import { connect } from 'react-redux';
import { Container, Text} from 'native-base';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { SegmentedControlIOSComponent } from 'react-native';
class BLE extends React.Component {
constructor(props) {
super(props);
};
render() {
return (
<Container>
<Text>
Status: {this.props.status}
</Text>
{this.props.connectedDevice && <Text>Device: {this.props.connectedDevice.name}</Text>}
</Container>
);
}
}
function mapStateToProps(state){
return{
BLEList : state.BLEs.BLEList,
connectedDevice: state.BLEs.connectedDevice,
status: state.BLEs.status
};
}
const mapDispatchToProps = dispatch => ({
addBLE: device => dispatch(addBLE(device))
})
export default connect(mapStateToProps,mapDispatchToProps,null,{ forwardRef: true })(BLE);