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.
14 lines
656 B
14 lines
656 B
void scan ()
|
|
{
|
|
byte error, address=60; // 8-ми битное беззнаковое целое число, в диапазоне 0..255
|
|
|
|
Wire.beginTransmission(address); // забираем значение адреса в переменную - address
|
|
error = Wire.endTransmission(); // забираем значение функции в переменную - error
|
|
|
|
if (error == 0) // проверяем переменную error, равна ли она - 0 есть ли на шине индикатор по адр 3с или 60
|
|
{ e=1;// есть
|
|
}
|
|
else
|
|
{ e=0;// нет
|
|
}
|
|
}
|
|
|