Nick Gammon

Results 3 issues of Nick Gammon

I suggest that the types of arguments and return values be specified in the documentation. For example instead of: > **Syntax** > > digitalRead(pin) > > **Parameters** > > **Returns**...

bug

I have the following small template library on my page about I2C ( http://www.gammon.com.au/i2c ): ``` C++ template unsigned int I2C_writeAnything (const T& value) { Wire.write((byte *) &value, sizeof (value));...

I have the following small template library on my page about SPI ( http://www.gammon.com.au/spi ): ``` C++ template unsigned int SPI_writeAnything (const T& value) { const byte * p =...