Implement relay get()

This commit is contained in:
Amilcar Lucas 2011-10-02 02:27:33 +02:00
parent 4b35757a1e
commit c46fe580c2
1 changed files with 1 additions and 2 deletions

View File

@ -41,6 +41,5 @@ void AP_Relay::set(bool status)
bool AP_Relay::get()
{
// TODO get the relay status
return false;
return PORTL & B00000100;
}