Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tballmsft committed Nov 3, 2023
1 parent f787656 commit b44930d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ namespace microcode {
// special case for buttons, which already exist on micro:bit (6 of them)
// we also have light sensor on board micro:bit (1 of them), as well as in Kit A
return ext == jacs.serviceClass("button") ? count > 6 :
ext == jacs.serviceClass("ligthLevel") ? count > 1 : count > 0
ext == jacs.serviceClass("lightLevel") ? count > 1 : count > 0
}
return true
}
Expand Down

0 comments on commit b44930d

Please sign in to comment.