Took 7 hours 48 minutes
This commit is contained in:
2022-11-17 23:29:33 +01:00
parent c81713cd23
commit 03dd0e0fb6
20 changed files with 642 additions and 211 deletions

View File

@ -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;
}
}