diff --git a/docs/en/modules/hmc5883l.md b/docs/en/modules/hmc5883l.md index 43f535f8..443a299f 100644 --- a/docs/en/modules/hmc5883l.md +++ b/docs/en/modules/hmc5883l.md @@ -20,7 +20,7 @@ temperature multiplied with 10 (integer) ```lua local sda, scl = 1, 2 i2c.setup(0, sda, scl, i2c.SLOW) -- call i2c.setup() only once -hmc58831.setup() +hmc5883l.setup() local x,y,z = hmc5883l.read() print(string.format("x = %d, y = %d, z = %d", x, y, z)) ```