ev3dev-lang
ev3dev-lang copied to clipboard
(deprecated) language bindings for ev3dev sensors, motors, LEDs, etc.
While I appreciate the ability to use the standad Linux GPIO interface fo reading buttons, it is a total pain that there is not also a `/sys` interface to get...
Dear all, Is this project active? The description of the project states: "(deprecated) language bindings for ev3dev sensors, motors, LEDs, etc." Is this project superseded by another project? I was...
Kernel version 4.4.87 code: ``` #!/usr/bin/env python3 from ev3dev.ev3 import * from time import sleep mB = LargeMotor('outB') mC = LargeMotor('outC') comp = Sensor(address='in1:i2c1', driver='ht-nxt-compass') t = 0 while t
c# bindings
I've written fullly autogenerated C# binding based on this project. Do you accept such PR's or the list of languages are fixed/frozen? (I've seen #114 so I suppose not but..)...
Hi, I found out some typo in the following document: http://www.ev3dev.org/docs/sensors/hitechnic-nxt-color-sensor/ , whereas `vendor_id` would be `HiTechnic` instead of `HiTechnc`. I am not quite sure about it, but I think...
I am missing two feature from the button api. 1) if I want to check if a key is pressed, where key is a variable I have to do: ```...
The spec does not currently specify a way to allow the use the seeker functionality provided by the EV3 infrared sensor through the central API.
We currently have `systemDeviceNameConvention` values in two forms: some of them are just a wildcard (`*`), while others are something along the lines of `motor{0}`. I'm not sure we even...
Now that our API surface for core functionality has been implemented, I've been trying to get the human-readable spec updated. I think this is still useful now that autogen works...
C# API again
Currently implements: - generic sensor class - large and medium motor - battery Whenever possible constants, basic methods and comments are generated with liquid. I had to change camel_case as...