Skip to content

Commit

Permalink
fix: use correct model triplet in sensor class
Browse files Browse the repository at this point in the history
  • Loading branch information
HipsterBrown committed Jan 8, 2025
1 parent c1b4246 commit 23e24af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcp300x.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class mcp3xxx(Sensor, Reconfigurable):
# Defines new model's colon-delimited-triplet
MODEL: ClassVar[Model] = Model(ModelFamily("viamlabs", "sensor"), "mcp300x")
MODEL: ClassVar[Model] = Model(ModelFamily("hazalmestci", "sensor"), "mcp300x")

# Creates class parameters
sensor_pin: int
Expand Down

0 comments on commit 23e24af

Please sign in to comment.