mirror of
https://github.com/Wessel/Roommapper.git
synced 2026-07-23 16:27:12 +02:00
Created compass.cs
This commit is contained in:
21
src/Client/Ultrasonic/Compass/compass.cs
Normal file
21
src/Client/Ultrasonic/Compass/compass.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Client.Ultrasonic.Compass
|
||||
{
|
||||
class Compass
|
||||
{
|
||||
private const int SCLPin;
|
||||
private const int SDAPin;
|
||||
|
||||
public Compass(int SCLPin, int SDAPin)
|
||||
{
|
||||
this.SCLPin = SCLPin;
|
||||
this.SDAPin = SDAPin;
|
||||
}
|
||||
|
||||
public int getAzimuth(){
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user