Joerg Hubschneider
Results
2
issues of
Joerg Hubschneider
For to use/retrieve the temperature value from the nrf51822 SoC, it would be nice to have a: ``` public void requestTemperature() { this->_device->requestTemperature(); } ``` method for the BLEPeripheral class....
enhancement
Using the pulseIn() method in a sketch (e.g.) ``` #define PULSE_PIN 3 void setup() { Serial.begin(115200); pinMode(PULSE_PIN, INPUT_PULLUP); uint32_t pulse = pulseIn(PULSE_PIN, HIGH, 6000); Serial.print ("pulse len[us]: "); Serial.println(pulse); }...
bug
help wanted