Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support all of firmata #14

Open
7 of 41 tasks
iamdustan opened this issue Apr 22, 2016 · 0 comments
Open
7 of 41 tasks

Support all of firmata #14

iamdustan opened this issue Apr 22, 2016 · 0 comments

Comments

@iamdustan
Copy link
Owner

iamdustan commented Apr 22, 2016

Pin

  • pinMode(pin,mode)
  • digitalWrite(pin,value)
  • digitalRead(pin,callback)
  • analogWrite(pin,value)
  • analogRead(pin,callback)

Servo

See #18 and #17.

  • servoWrite(pin, degree)
  • servoConfig(pin, min, max)

I2C

  • i2cConfig(delay)
  • i2cConfig(options)
  • i2cWrite(address, [...bytes])
  • i2cWrite(address, register, [...bytes])
  • i2cWriteReg(address, register, byte)
  • i2cRead(address, numberOfBytesToRead, handler(data))
  • i2cRead(address, register, numberOfBytesToRead, handler(data))
  • i2cReadOnce(address, numberOfBytesToRead, handler(data))
  • i2cReadOnce(address, register, numberOfBytesToRead, handler(data))
  • sendI2CConfig(delay) Deprecated
  • sendI2CWriteRequest(slaveAddress, [bytes]) Deprecated
  • sendI2CReadRequest(slaveAddress, numBytes, function(data)) Deprecated

Debug

  • sendString("a string")

One-Wire

  • sendOneWireConfig(pin, enableParasiticPower)
  • sendOneWireSearch(pin, callback)
  • sendOneWireAlarmsSearch(pin, callback)
  • sendOneWireRead(pin, device, numBytesToRead, callback)
  • sendOneWireReset()
  • sendOneWireWrite(pin, device, data)
  • sendOneWireDelay(pin, delay)
  • sendOneWireWriteAndRead(pin, device, data, numBytesToRead, callback)

Serial

  • board.SERIAL_PORT_IDs
  • board.serialConfig(options)
  • board.serialWrite(portId, inBytes)
  • board.serialRead(portId, callback)
  • board.serialRead(portId, maxBytesToRead, callback)
  • board.serialStop(portId)
  • board.serialClose(portId)
  • board.serialFlush(portId)
  • board.serialListen(portId)

Sysex

  • board.sysexResponse(commandByte, handler)
  • board.sysexCommand(message)

Encode/Decode

  • Board.encode(data)
  • Board.decode(data)
@iamdustan iamdustan changed the title servoRead/Write Support all of firmata Apr 22, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant