Im looking for a way to control a linear actuator using the Grove I2C Motor driver and an ItsyBitsy RP2040. I have the right power supply (tried to hook up the linear actuator directly to the power supply, which worked), but now I would like to control the actuator using code (circuitPython). I tried looking for a library in the "adafruit-circuitpython-bundle-7" but couldn't find anything that seemed similar to the driver used in the Grove Arduino example. Do you know which library I can use to do this? I am looking for a simple example such as extend for 10s and retract for 10s.
How to drive a large Linear Actuator using the Grove - I2C motor driver and an ItsyBitsy RP2040?
63 views Asked by Sander Aalbers At
1
There are 1 answers
Related Questions in I2C
- Adafruit BNO08x Lib Not working with PicoRP2040 - PlatformIO
- msp430f5438a reading multiple sensor tmp117
- Raspberry pi 4, ina219 Bi-Directional DC Current Power Supply Sensor
- read block data with smbus2 is slow on Raspberry Pi
- I2C problems communicating with I2C Analog Devices AD5112 Digital Pot
- How to receive a float array using esp8266 via I2c
- I2C Communication with Tiva TM4C123GXL
- GPIO I2C IMU on OrangePi CM4 Running Android Doesn't Interface With Native Apps
- I2C LCD1602 interfacing with PIC16F877A
- Sets huskylens modes
- Find out which protocol to communicate with a TFT LCD display
- Why does one of the arguments in this MPU-6050 code mean something different from the official Arduino documentation?
- I want to change the slave address in runtime again after the first configuration of i2c SLAVE. Is this possible , I'm getting errors while doing that
- Issue with MAX32664 breakout board from Protocentral on STM32L476RG Nucleo-64: Fixed SpO2 value
- enabling cdc-acm uart and I2C at the same time on zephyr OS
Related Questions in ADAFRUIT-CIRCUITPYTHON
- Ringing noise overpowering voice / Recording audio with Max 9814 microphone on Raspberry pi pico using ADC Pin / Circuitpython
- Example of BLE client using circuitpython on an esp32 s3
- Printing an exception that works on Micropython/CircuitPython AND desktop python
- Asyncio on CircuitPython doesn't runs two functions concurrently
- Raspberry Pi Zero 2 W automatically disconnects after editing and saving new code in the `code.py` file
- Running circuit python on one esp32 core and C++ on the other
- Circuitpython servo not rotating full 180 degrees with Raspberry Pi Pico
- simple Server using socketpool on a pico w with Circuitpython
- How can I successfully install and import the "adafruit_servokit" python library using Ubuntu?
- The issue about sending the second calling using `Adafruit_requests`
- ImportError: No module named setuptools on Raspbian OS
- Can't disable USB on QT Py CircuitPython
- How to disable Roll reading backwards from a bno055 sensor when it is out of the angle range?
- Getting abnormally high negative temperature even though rtd is at room temperature using adafruit_max31865
- Changing advertisement ID in adafruit_ble for Circuit Playground Bluefruit
Related Questions in MOTORDRIVER
- raspberry driver stepper motor 24v 2A
- MongoDB connection with Motor driver to discord.py bot
- How do the Kitronik Robotics Boards' motor outputs work only for motors specifically?
- Ideas for how to run oscillating stepper motor with bnc input from Labchart8?
- How can I use STM32F103 to read TMC2226's register
- Fast PWM 1kHz | 6V DC engine control using RC receiver || Attiny 2313
- L298n motor control with Raspberry pi
- Inquiry about AZSPWM1 Implementation on TMS320F28335 for induction machine
- FOC Clarke Transform multiplication coefficent
- Configuring GPIO pins for Hall sensored six step commutation with STM32F4 Discovery board
- Rotation step motor arduino
- SPI protocol used on communication between two ST MCU's and an end Peripheral Device
- Control fan speed with PCA9685 and a PIC
- How to drive a large Linear Actuator using the Grove - I2C motor driver and an ItsyBitsy RP2040?
- using mongodb with motor driver and django
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It looks like it has a custom protocol over i2c. It might be worth searching for characteristic parts of the library on GitHub and similar to see if anyone has already created a MicroPython or CircuitPython library. This might be a partial implementation in Python: https://github.com/bokmann/GrovePi/tree/master/Software/Python/grove_i2c_motor_driver
Alternative is to write your own based on https://github.com/Seeed-Studio/Grove_I2C_Motor_Driver_v1_3 or use a different supported board.