forked from youen/OneWireArduinoSlave
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
360 B
32 lines
360 B
10 years ago
|
#include "OneWireSlave.h"
|
||
|
|
||
|
OneWireSlave::OneWireSlave(byte* rom, byte pinNumber)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void OneWireSlave::enable()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void OneWireSlave::disable()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
bool OneWireSlave::read(byte& b)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
void OneWireSlave::setReceiveCallback(void(*callback)())
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void OneWireSlave::write(byte* bytes, short numBytes, void(*complete)(bool error))
|
||
|
{
|
||
|
|
||
|
}
|