Skip to content
Snippets Groups Projects
Commit 9989ce52 authored by Matt Grau's avatar Matt Grau
Browse files

connect device to backend (write)

parent 4a2b6052
No related branches found
No related tags found
No related merge requests found
......@@ -10,17 +10,25 @@ export default class Device extends React.Component {
current: 0,
resistance: 0,
};
this.getValues = this.getValues.bind(this);
}
async componentDidMount() {
this.getValues();
}
async getValues() {
const voltage = await axios.get("http://localhost:8000/get_voltage");
const current = await axios.get("http://localhost:8000/get_current");
const resistance = await axios.get("http://localhost:8000/calculate_resistance");
const resistance = await axios.get(
"http://localhost:8000/calculate_resistance"
);
this.setState({
voltage: voltage.data,
current: current.data,
resistance: resistance.data
})
voltage: voltage.data,
current: current.data,
resistance: resistance.data,
});
}
render() {
......@@ -32,15 +40,37 @@ export default class Device extends React.Component {
<div>
<div>
<label>Voltage</label>
<input value={this.state.voltage}></input>
<input
value={this.state.voltage}
onChange={(event) =>
this.setState({ voltage: event.target.value })
}
onBlur={async () => {
await axios.get(
`http://localhost:8000/set_voltage/${this.state.voltage}`
);
await this.getValues();
}}
></input>
</div>
<div>
<label>Current</label>
<input value={this.state.current}></input>
<input
value={this.state.current}
onChange={(event) =>
this.setState({ current: event.target.value })
}
onBlur={async () => {
await axios.get(
`http://localhost:8000/set_current/${this.state.current}`
);
await this.getValues();
}}
></input>
</div>
<div>
<label>Resistance</label>
<input value={this.state.resistance}></input>
<input value={this.state.resistance} readOnly></input>
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment