A low cost DIY sound pressure level sensor for enabling environmental noise awareness. https://lukasschwarz.org/noise-sensor
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

NoiseSensorNode.cpp 261 B

1234567891011
  1. // vim: noai:sw=2:tw=88
  2. #include "NoiseSensorNode.h"
  3. #include "NoiseSensor.h"
  4. NoiseSensorNode::NoiseSensorNode() {};
  5. NoiseSensorNode::NoiseSensorNode(uint8_t node_id, uint8_t size) {
  6. this->_node_id = node_id;
  7. this->_measurements = new uint16_t[size];
  8. }