Hi,
I completely agree with sundialsvcs (and not so respectfully) when he states that:
You have a sensor and that sensor produces discrete units of data called measurements. One of the attributes of a measurement data-point is its "measurement_type."
What happens when a third measurement type is added? Create a new table? Then what when there are a fourth, and a fifth, and so on, measurement types?
Using a single "measurement" table that has a measurement_type handles this issue gracefully. As an additional benefit, you will end up writing a lot less code, since you will have to write once, only once, any code that handles different types of measurements.
Ravi