Search found 15 matches

by likith1268
Tue Aug 23, 2022 10:51 am
Forum: General Discussion and Questions
Topic: Raspberry Pi Pico Error ! || function takes 0 positional arguments
Replies: 3
Views: 3779

Re: Raspberry Pi Pico Error ! || function takes 0 positional arguments

hello there, I have two Raspberry Pi Picos, both are giving me the same error without even running the code. Traceback (most recent call last): File "<stdin>", line 7, in <module> TypeError: function takes 0 positional arguments but 2 were given WARNING: Could not sync device's clock: function takes...
by likith1268
Tue Aug 16, 2022 9:49 am
Forum: ESP32 boards
Topic: TM2130 packwge
Replies: 4
Views: 3543

Re: TM2130 packwge

HI,

I'm working on stepper motor, I have three same kind of stepper motor connected to "pico". I need to merge all these individual codes into one single code and run the motor simultaneously.
by likith1268
Tue Aug 09, 2022 12:12 pm
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

Thankyou so much for your help, it's all done.

without you may be we can't do it. thanks a lot
by likith1268
Tue Aug 09, 2022 7:36 am
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

we are using 1kg strain gauge load cell.
by likith1268
Mon Aug 08, 2022 7:02 pm
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

sorry to bother you again, but I need some clarity on calibration thing. so, when I am running example_rp2_test.py file it's printing the value continuously with different numbers and simultaneously, i am getting one value when running scale.py file (this is without load) lly, when applied load the ...
by likith1268
Mon Aug 08, 2022 3:47 pm
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

yes, it worked..

Thank you so much for that 3.3v, we fixed it and getting the values

can we know how to calibrate the values, I have attached scale.py offset values which is -404751.

can you please help with that thing too, it would be so great if you could help with this.
by likith1268
Mon Aug 08, 2022 2:33 pm
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

I tried adding the code in the while loop which you gave, but getting the same zeros in the output.

I need the weight of the product as the output but it's showing all zeros.
by likith1268
Mon Aug 08, 2022 10:49 am
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

okay,
can you please elaborate what I should keep inside the while loop in order to print the weights?
and to print the new values.
by likith1268
Mon Aug 08, 2022 9:05 am
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

Hello, yes, thanks for your reply. I have changed the pin connection in the code and when i am trying to calibrate it's not working when i am running the example_rp2_test.py file , it giving me all zero's and when i am running scale.py file, it gives me a error saying type object 'SPI' has no attrib...
by likith1268
Thu Aug 04, 2022 4:21 pm
Forum: Programs, Libraries and Tools
Topic: HX711 - which lib should I use?
Replies: 73
Views: 54870

Re: HX711 - which lib should I use?

hello there, This is the schematic diagram for the load cell with pico. this could give you a clear understanding of the connections. I'm keeping the code as well for your reference. from hx711_gpio import HX711 from machine import Pin pin_OUT = Pin(12, Pin.IN, pull=Pin.PULL_DOWN) pin_SCK = Pin(13, ...