Fix typo in code sample (#2063)

This commit is contained in:
wolfg 2017-08-06 04:10:49 +08:00 committed by Marcel Stör
parent e09e830d4b
commit 61562b45bd
1 changed files with 1 additions and 1 deletions

View File

@ -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))
```