update
Took 7 hours 48 minutes
This commit is contained in:
11
src/HX711.ts
11
src/HX711.ts
@ -1,3 +1,14 @@
|
||||
export class HX711 {
|
||||
private clockPin: number;
|
||||
private dataPin: number;
|
||||
|
||||
|
||||
constructor(clockPin: number, dataPin: number) {
|
||||
this.clockPin = clockPin;
|
||||
this.dataPin = dataPin;
|
||||
}
|
||||
|
||||
public measure(): number {
|
||||
return 0;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user