Тёмный

Raspberry Pi INA219 Power Measurement Tutorial 

rdagger68
Подписаться 24 тыс.
Просмотров 89 тыс.
50% 1

This tutorial demonstrates how to measure DC power consumption with a Raspberry Pi and an INA219 breakout board. The I2C board is combined with a 16x2 LCD display to track voltage, amps and watts.
All code, schematics, notes, updates and more are available on my website: www.rototron.in...

Наука

Опубликовано:

 

20 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 265   
@NavyPanther54
@NavyPanther54 2 года назад
Extremely detailed, but not too much for someone still new. Also very clear voice, and IMO talking was at a perfect speed, not too slow and not too fast. Well done!
@Maxlr2005
@Maxlr2005 4 года назад
I'm not doing any raspby project now, but daaaaamn.... best tutorial vid so far!!!!
@Impatient_Ape
@Impatient_Ape 4 года назад
EXCELLENT!!!! Great editing!! Thank you for spending the time to take your raw video and turn it into an efficient tutorial/how-to.
@terryboyle
@terryboyle Год назад
Can't thank you enough for such a clear and detailed video. Subscribed!
@laddaren11
@laddaren11 2 года назад
Excellent tutorial Mr. Ryan Howard
@isayprod
@isayprod 7 лет назад
I need you to do a lot more videos on raspberry pi ! I am kind of on a project and I have absolutely no idea of how raspberry pi works. Also, I don't have a lot of money (^^) and your video about reuse a dc motor from a hardrive was so helpful ! So your videos help me a lot ! If you can make a tutorial about how we can handle step-motors, it will be perfect ! Also, if you have nothing to do (xD), you could make a tutorial about "emg" and signal processing !! This will be an big pleasure for me to learn that with you ! Thanks for all, love from Belgium !!
@rdagger
@rdagger 7 лет назад
Thanks for the positive feedback and the great suggestions!
@zikermu
@zikermu 4 года назад
Great . It was a pleasure to watch this video with clear explanations .Thanks a lot .
@jacqueschouteau606
@jacqueschouteau606 5 лет назад
Thank you so much. Very good video, explain well. Good quality for the sound, it's nice
@rsyoung01
@rsyoung01 5 лет назад
Best on web!
@santiagotesta9720
@santiagotesta9720 2 года назад
Very clear! Thank you
@0ffGridTechClub
@0ffGridTechClub Месяц назад
Awesome !
@bouttejean-baptiste762
@bouttejean-baptiste762 3 года назад
So nice ! Many thanks about this tuts ! Just one thing. You are mentionned the ACS712 for higher current measurement. but it seems to be a little bit different to plug it to the pi. Obviousely it need to be connected thru something like MPC3008 converter. Can you give us more detail how about using it ? Best !
@rdagger
@rdagger 3 года назад
I haven’t used the ACS712 in a project but you’re right that you would need an ADC like the MCP3008. I have a video on ADC’s: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-wJgyszOSoQU.html You might also want to ask Allegro Micro and Texas Instruments tech support for recommendations because there are many new current sensors with I2C interfaces: www.allegromicro.com & www.ti.com
@vmdcortes
@vmdcortes 4 года назад
Great video, thank you so much!!
@hadirizvi2670
@hadirizvi2670 3 года назад
Excellent way of teaching? It is possible to show this watt meter informations via hdmi to output monitor?
@rdagger
@rdagger 3 года назад
Yes, you could use a Python interface such as Tkinter.
@hafidel740
@hafidel740 7 лет назад
thank you very helpful tutorial, it will be great if you make a video with how to controle a stepper motor.
@rdagger
@rdagger 7 лет назад
Great suggestion!
@rdagger
@rdagger 7 лет назад
I made a stepper motor tutorial: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-LUbhPKBL_IU.html
@hafidel740
@hafidel740 7 лет назад
Oh thank you very much, I have to check this!
@error8641
@error8641 2 года назад
i am getting around 1 supplyvolt when nothing is connected to the load. can you please explain why?
@jayeshambulkar9079
@jayeshambulkar9079 3 года назад
can you tell how to measure the solar radiation using INA219
@samhull8028
@samhull8028 4 года назад
Very clear simple and helpful, thank you, I would like to send the readings to a file to record, would like some help on the additional code. many thanks
@rdagger
@rdagger 4 года назад
You can use Python logging although that could have adverse effects on your SSD card depending on frequency. I usually log to a Syslog server running on my home NAS or use an online service such as Adafruit IO.
@jasonkeen7108
@jasonkeen7108 3 года назад
Want to mod out a ina219 to give stats via i2c to a .96 oled have a zero2goomini with the capability of 28 volt max however cant figure out shunt resistor change for a 7s3p pack of cells that r 3.7 to 4.2v nominal margin each at 2200mA each... can anyone help me with the right shunt resistor by replying with a link ...ty bc I'm gonna use the ina219 to display what the battery pack is at current , voltage and watts. Zero2goomini has 3 inputs capable of 28v max and are common ground on each input was gonna take and bridge that to a 3 way switch and solder one positive from each pad to the remaining 3 legs of switch.
@justinrussell9734
@justinrussell9734 3 года назад
Why is it that the load for which amperage is being measured must share the ground with the LCD display and PI? Would it be possible to have the LCD display and PI share a ground, but have that ground be separate of the circuit for which amperage is being measured?
@rdagger
@rdagger 3 года назад
A common ground is mandatory to measure voltage because it is a relative value. If you only want to measure current you might be able to use an INA219 without a common ground but there could be some accuracy issues.
@TheNikolaschoulakis
@TheNikolaschoulakis 4 года назад
This is brilliant very well explained but can you please make a similar tutorial for the new version of this board INA260? It would help me a lot as I want to install it on my portable retropie build so I can read the battery voltage level.
@rdagger
@rdagger 4 года назад
Looks like a great chip with a substantial range improvement. The set up for the INA260 would be very similar to the INA219. The main difference would be software. Instead of the ChrisB2 library, you would probably want to use Adafruit CircuitPython which will run on the Raspberry Pi if you use their Blinka library. I have a tutorial that discusses Blinka and CircuitPython: www.rototron.info/circuitpython-nrf52840-pi-tutorial/
@TheNikolaschoulakis
@TheNikolaschoulakis 4 года назад
rdagger68 hi but this is precisely my problem the Adafruit INA260 installation guide is very vague when it comes to the first part of installing circuit python. learn.adafruit.com/adafruit-ina260-current-voltage-power-sensor-breakout/python-circuitpython it’s talking about installing circuit python and takes u to another guide then it asks you to install some files at some place at the pi etc... it’s extremely confusing. So a video step by step guide would be great.
@rdagger
@rdagger 4 года назад
Sorry, it would probably be a long time before I could make your request. Installing CircuitPython is very easy and I do demonstrate the installation process in the link above at 8:37 in the video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-bserx54ZJPM.html I think the Adafruit tutorial is confusing because it is primarily targeting their boards and not the Raspberry Pi. If you follow the instruction in my video to install Blinka, then theoretically the only other install step should be to pip install the INA260 driver: sudo pip3 install adafruit-circuitpython-ina260
@leblancexplores
@leblancexplores Год назад
Can you measure voltage drop with a raspberry pi?
@dilipkalyan7176
@dilipkalyan7176 5 лет назад
If we r working with picam and raspberry pi, can we still use ina219 to know different values of current and voltage for different images captured by picam? Will there be any difference in current and voltage values for different images captured by picam?
@giovanninieddu4885
@giovanninieddu4885 3 года назад
Good morning, there is also the possibility to create a current generator in the range 4-20ma? I need to control a proportional electrovalve in current with raspberry
@rdagger
@rdagger 3 года назад
I haven’t tried but you could probably build a voltage controlled current source circuit using an opamp and a MOSFET and then control it using PWM. There are probably many adjustable current source chips that could be controlled using PWM or a digital pot. I recommend you search electronics.stackexchange.com for “adjustable current source mA”.
@jasonkeen7108
@jasonkeen7108 3 года назад
Btw it's for a raspberry pi 4
@ASKeSolutions
@ASKeSolutions 5 лет назад
I am working with Raspberry Pi and wanted to check power measurement 1. when only a power switch is on and 2. power measurement when any Line or machine STARTS running? Please guide about what sensor we can use for Heavy Industrial Machines / conveyor lines. Remember we are using Raspberry Pi. Please share your email / mobile to better understanding.
@shrekogreface7411
@shrekogreface7411 4 года назад
He mentioned daisy chaining INA219s together in the video, is it really as simple as connecting them all to the same GPIO ports via the breadboard or would I need a multiplexer? Could they all use the same power supply from the 3.3V pin? I'm trying to measure and record 4 different circuits at once. Any help would be really appreciated!
@rdagger
@rdagger 4 года назад
It should be easy connecting 4 INA219 boards. You just need to set the I2C slave address on each board so it's unique. You can have up to 16 boards because there are 16 possible slave addresses. The boards do not require much power so the 3.3V supply pin should be OK.
@shrekogreface7411
@shrekogreface7411 4 года назад
@@rdagger Thank you so much! I was not expecting such a quick response! Do you have a patreon?
@rdagger
@rdagger 4 года назад
@@shrekogreface7411 I don't have a patreon. Thanks for inquiring.
@shankar.w
@shankar.w 5 лет назад
Thanks for such great video. Can we make prototype of smart grid meter with INA219?
@rdagger
@rdagger 5 лет назад
The INA219 can only measure up to +26VDC.
@alipiocarvalho1857
@alipiocarvalho1857 4 года назад
Very Nice. Is it possible to measure resistances by ohms law calculating?
@ZephodBeeblebrox
@ZephodBeeblebrox 2 года назад
I just tried the non LCD code with the Pi Pico and... >>> %Run -c $EDITOR_CONTENT Traceback (most recent call last): File "", line 1, in File "/lib/ina219.py", line 5, in ImportError: no module named 'logging' It seems there's no logging module in Micro Python. I'm still at the moment hunting for a solution.
@rdagger
@rdagger 2 года назад
The logging library is part of MicroPython Lib: github.com/micropython/micropython-lib/tree/master/python-stdlib/logging
@sonersoner2074
@sonersoner2074 3 года назад
Hi everybody. Can I use this circuit with node red ?
@amoghdabholkar9342
@amoghdabholkar9342 6 лет назад
Hey, great video! Can I use this INA 219 to calculate and display [on an LCD screen] the remaining battery of any device?
@rdagger
@rdagger 6 лет назад
All batteries have a discharge curve. This non-linear graph shows voltage as a function of capacity. Generally speaking, rechargeable batteries tend to have a consistent curve over their lifespans. Therefore, by monitoring voltage you can get an estimate of battery capacity. You can also track current consumption and generate a running total to calculate an amp-hours value. By combining the two you can get a better estimate. If you are working with LiPo batteries, you can use a low cost MAX17043 I²C battery fuel gauge module.
@f2uiv1w4
@f2uiv1w4 Год назад
hi thanks for the video, do u know any piece that can take about 10A 24V for measurement? Thanks
@rdagger
@rdagger Год назад
You might also want to ask Allegro Micro and Texas Instruments tech support for recommendations because there are many new current sensors with I2C interfaces: www.allegromicro.com & www.ti.com
@medhammami8850
@medhammami8850 4 года назад
very good video , is there any other circuits other then the INA219 that can measure high voltage ?
@rdagger
@rdagger 4 года назад
I don't have any first hand experience but there are probably many options. TI makes the INA169 and LM5056. Linear makes the LTC2945. I'd speak with TI and/or Linear tech support and ask for recommendations. You can also try Allegro MicroSystems: www.allegromicro.com and the Open Energy Monitor forum: community.openenergymonitor.org
@darrensmiith2560
@darrensmiith2560 4 года назад
Great videos. Have you thought about doing a video on Time of Flight detectors so that you can measure the distance between devices. DecaWave DWM1001-dev ?
@rdagger
@rdagger 4 года назад
Thanks. No plans for TOF. I think Andreas Spiess made a few videos.
@replicante1214
@replicante1214 2 года назад
Hi, does INA219 provide RMS values for both Voltage and Intensity or the instantaneous values?
@pareshchauhan6127
@pareshchauhan6127 3 года назад
very good tutorial. I have a question: Hello i am new and doing a project with INA219 sensor with raspberry pi. I have configured and measured the current voltage and power with single sensor. My doubt is that if i want to measure the voltage and current at different points in circuit so should i connect the new sensor at that point or the previous one would work fine. i need help regarding this.
@rdagger
@rdagger 3 года назад
You can only read 1 spot at a time with a single sensor.
@stefanocosentino9481
@stefanocosentino9481 3 года назад
what about a voltage sensor?
@danielsmith7105
@danielsmith7105 6 лет назад
great video, thanks
@sigityulianto3599
@sigityulianto3599 6 лет назад
How to send a message?
@syedahasnainnaqvi1572
@syedahasnainnaqvi1572 2 месяца назад
How can I do this without the LCD? Jusr a resistor?
@rdagger
@rdagger 2 месяца назад
Don’t connect an LCD. Omit the LCD code. Replace all calls to lcd.message() with print(). A resistor is not necessary.
@soyguikai
@soyguikai 3 года назад
it is possible to use more ina219 with one raspberry to measure different things at the same time?
@rdagger
@rdagger 3 года назад
You can have up to16 INA219 sensors on an I2C bus. Each INA219 must have a unique address which is set using jumpers A0 and A1. See table 1 of the datasheet for more info.
@colins2005
@colins2005 7 лет назад
Great tutorial but I can't get it to work. I am running the example code.With no bus voltage connected and load I get a bus voltage = 1.036 Bus current = 1409.207ma supply voltage = 1.77 shunt voltage 141.210mv power 1452.439 mw . I have had to increase the MAX_EXPECTED_AMPS from 0.2 to 2.0 to get this result or I get a current out of range error. Any help would be great I'm a Pi newbie.
@rdagger
@rdagger 7 лет назад
Does the power source being measured share a common ground with the Pi?
@paulwiltjer7515
@paulwiltjer7515 5 лет назад
Nice tutorial! I have one problem, get amps reading but not voltage (stays 0,0V). Double checked cabling (ground), but cannot find a problem. Any ideas what it can be? Thanks
@rdagger
@rdagger 5 лет назад
Please make sure there is a common ground between the Pi and the source being measured.
@dirkschelfhout6460
@dirkschelfhout6460 2 года назад
my sensor won't read, I tried 2 and I tried to make another bus beside the standard pin's. going nuts. will have to buy from a different supplier. 1 sensor showed it's address 1 time. I found another guy who saw the same, but he didn't get replies or posted a solution.
@rdagger
@rdagger 2 года назад
Buying from Adafruit is your safest bet.
@dirkschelfhout6460
@dirkschelfhout6460 2 года назад
@@rdagger I looked and its the same board. the simple version with no extra connectors on the side. I bought 5 on amazon.de think it comes from china as its 2 week delivery. Tested a second on bus at other pins. same result , it sees it 1 time then dies. I toyed with adding 3k3 pull ups and changing the pull up to none etc on the pins. ( not the standard ones ). Nothing wrong with the power or gnd ( 3v3 ). Only thing is that I have nothing connected to measure as I just wanted to check the connection and software. maybe it's a bad batch. I will order some more from a different supplier in germany.
@dirkschelfhout6460
@dirkschelfhout6460 2 года назад
after testing with some diff pull up's I decided to do a test again on i2c bus 1. Got it working with 10k pull up added to sensor. Will try again later with 5k on bus 2. but happy to get it working.
@goczy2
@goczy2 5 лет назад
Very nice video! I'm trying to measure the output of a solar panel so I made the same circuit what you did and replaced the power source with a solar panel. The measurement of the sensor seems to be ok for the voltage but for some reason the current is always zero. Do you have any idea why could this happen?
@rdagger
@rdagger 5 лет назад
If the INA219’s shunt is in series with the panel’s positive lead then you would only be able to measure current if there was a load. Many solar charge controllers have serial ports that log real-time data. I have a tutorial on reading data from charge controllers: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-1VxP38XlVEQ.html
@user-ry8ty2xt9j
@user-ry8ty2xt9j 3 года назад
hey, thanks for the great guide!! i trying to do this project but icouldn't compile the program on my python ide can you help me please?
@rdagger
@rdagger 3 года назад
The video is old. See my website for updates. If you're using Python 3 then you may need to use pip3 install instead of pip install. If that doesn't work, please post the error message.
@nickddd3953
@nickddd3953 2 года назад
Is the power rating Watt hours? So that lamp consumes 2watts per hour?
@rdagger
@rdagger 2 года назад
No. Watts is a measure of power as opposed to watt-hours which is a measure of energy. A 2-watt light bulb will consume electricity at a rate of 2 watts. If you run a 2-watt bulb for one hour, you've used 2 watt-hours.
@ademsaglam814
@ademsaglam814 3 года назад
How can we transfer this data to the mysql database?
@rdagger
@rdagger 3 года назад
I have not tried, but you take a look at: github.com/PyMySQL/mysqlclient
@Unknown-rm3ot
@Unknown-rm3ot 5 лет назад
Hello, can i use instead relay channel and measure the electric appliance connected to the outlet and outlet to the relay channel? thanks
@rdagger
@rdagger 5 лет назад
I don't understand the question, but if you want to measure household appliances then you would need a different solution because the ina219 can only measure up to 26V DC. Try openenergymonitor.org/
@joepublic2454
@joepublic2454 5 лет назад
Love your tutorials, I want to use the INA219 to measure current between 0 and 20ma for a pressure transducer/transmitter running of 12 volts, how accurate is the device at lower currents ?
@rdagger
@rdagger 5 лет назад
According to the first page of the datasheet it is 0.5% accurate over temperature.
@syedyousuf4818
@syedyousuf4818 6 лет назад
Hello,its a very good explanation. I have one request that how can we save that voltage readings in sql database.
@rdagger
@rdagger 6 лет назад
Database integration is a very involved topic. Generally speaking running a database on the Pi is problematic because of the high number of write cycles to the SD card which has a limited lifespan. Nonetheless, many people have had good luck using SQLite: www.sqlite.org/ It has python bindings and is not as write intensive as MySQL or Redis. Another option is to use an online database. In my RocketChat tutorial I use MLab for database storage from the Pi: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-BevcvRLsa9Y.html MLab offer a free sandbox plan that provides .5GB of data storage: mlab.com/
@syedyousuf4818
@syedyousuf4818 6 лет назад
Sir only particular voltage saving in database apart from every repeated voltage,can this be possible,if possible can you please describe the procedure.
@rdagger
@rdagger 6 лет назад
It is a complex topic, but basically you would need to do the following: Create a database, create a table with a numeric field to store the voltage readings, in your program you would need to establish a database connection, create a query or cursor object on the connection and then execute an Insert statement to append the voltage data to the table. Here is an example for SQLite: www.sqlitetutorial.net/sqlite-python/insert/
@syedyousuf4818
@syedyousuf4818 6 лет назад
Its very helpfull,thank you
@drjonbear7517
@drjonbear7517 5 лет назад
Hey, great vid thanks. I have a question about the resistors used. I don't have those sizes, and wanted to check what would be acceptible as I'm a bit of a noob :-) In place of the 4.7K, would 5.1K be suitable, similarly, I don't have 51 ohm, would Ibe better with 10K or 100K? Thanks.
@rdagger
@rdagger 5 лет назад
The resistors used for the LCD display are only to control contrast and brightness. Changing the values will change these levels which should be OK. 4.7K and 5.1K are very close. However, 51 ohm and 10K are not close. 10K stands for 10,000 ohm which is around 200 times larger than 51 ohm. Ideally, you should use potentiometers instead of resistors. This will allow you to fine tune the contrast and brightness. There is an example of using pots with an LCD display in my weather clock tutorial: www.rototron.info/raspberry-pi-international-weather-clock/
@atharvasaney3897
@atharvasaney3897 5 лет назад
so which device should i use to measure power upto 100 watts and around 30 volts ??
@rdagger
@rdagger 5 лет назад
I have not tried it but Adafruit has an INA169.
@RaspberryRockOffGridCabin
@RaspberryRockOffGridCabin 5 лет назад
Do you know of a device that will measure voltage up to 60V? Thanks in advance.
@rdagger
@rdagger 5 лет назад
I don't have any first hand experience but there are probably many options. TI makes the INA169 and LM5056. Linear makes the LTC2945. I'd speak with TI and/or Linear tech support and ask for recommendations.
@kyuchumimo
@kyuchumimo 4 года назад
What would happen if I also connect the LCD via I2C? How would your connection be?
@rdagger
@rdagger 4 года назад
I have a video on I2C displays: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-i5A5AsDRRwQ.html
@ryangarethstevens
@ryangarethstevens 5 лет назад
Hi @rdagger68 I am trying to measure the voltage and current a small solar cell produces when laying out in the sun using an Arduino and a INA219. The solar cell is not connected to a load as I do not want to measure the current drawn from the load but rather the current that a solar cell produces throughout the day when exposed to various irradiances. How would you go about connecting the INA219? Would I be able to connect the positive and negative of the solar cell directly to the two terminals of the INA219 sensor with no load or is that not recommended?
@rdagger
@rdagger 5 лет назад
Generally speaking, you cannot measure current unless there is a load because current is a flow of electrical charge carriers (usually electrons). Connecting an INA219 across the solar panel output as you described would create a short circuit. This is usually undesirable and can damage equipment. However, there is an exception with respect to some solar panels. I recommend you check with your solar vendor before attempting to measure short-circuit current (Isc). So to answer your question, it might be OK to measure Isc which could give you relevant data assuming the Isc and the light-generated current have similar values. Again you would need to verify with the vendor and I would also inquire regarding the impact of long duration tests. I don’t think you would be able to simultaneously measure current and voltage because when you short the solar panel leads you should have zero potential (0V). You also have to be careful when measuring Isc that you don’t exceed the 3.2A maximum of the INA219 breakout board.
@mehmetcennetkusu8129
@mehmetcennetkusu8129 5 лет назад
could you please. Can you share your first engine circuit diagram?
@rdagger
@rdagger 5 лет назад
Sorry I never created a schematic. The drill had a proprietary motor driver IC with no info available. I just removed the trigger slide and replaced it with a potentiometer.
@happymatekenya394
@happymatekenya394 Год назад
Can I run the same code on a pico?
@rdagger
@rdagger 11 месяцев назад
Take a look at my vegetable garden automation video. I connect an ina219 to an esp32: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-x219R5rzRtU.htmlsi=tXsOLa8lNoLr3zWx
@dillibabu5432
@dillibabu5432 5 лет назад
I need to measure three appliance's energy consumption at same time but how, can you please help me with this
@rdagger
@rdagger 5 лет назад
Generally speaking, household appliances around the world run on mains electricity which is usually AC between 100V and 240V. The INA219 is DC and only rated for +26V. Therefore, it would not work. Please be careful because mains electricity can be very dangerous.
@dillibabu5432
@dillibabu5432 5 лет назад
@@rdagger then how can I measure ac devices sir
@rdagger
@rdagger 5 лет назад
Please consult with an electrical engineer before experimenting with lethal AC voltages. Sorry I’m not aware of any safe hobbyist solutions. You could try the Open Energy Monitor forum: community.openenergymonitor.org/
@DanielDuhon
@DanielDuhon 5 лет назад
Is there a way to measure this without buying a separate chip?
@rdagger
@rdagger 5 лет назад
You could time the charging of a capacitor with a couple of resistors but it would not be nearly as accurate or reliable.
@sallen135
@sallen135 6 лет назад
I have this set up with an LED, using an 18650 as my power supply. I have followed the schematic exactly, and can measure 1.7 Volts across the Shunt Resistor. When I run the code I am getting a voltage of 2.58 (battery is at 4.06V) and an overflow error. Any idea what is going wrong?
@rdagger
@rdagger 6 лет назад
Do you have a common ground between the 18650 and the Pi?
@sallen135
@sallen135 6 лет назад
Yes a Pi ground, the LED negative, and the 18650 negative are all on the same bread board rail. The positive of the 18650 is in Vin+ on the INA and the positive of the LED is in Vin-. The VCC, GND, SDA and SCL on the INA are all straight to GPIO pins. Is your power supply current regulated in any way?
@rdagger
@rdagger 6 лет назад
The wiring sounds good. I was not regulating the current. The voltage drop on the resistor isn't right. That would be a 17A load assuming a 0.1Ω shunt. Did you mean 1.7mV? Approximately, how many mA is your LED? I'd inspect all the solder connections on the board carefully with a magnifying glass.
@AJB2K3
@AJB2K3 6 лет назад
how could I use these to monitor 6 and 8 AH nicads and would it be possible to add an auto detect and configure for multiple INA's?
@rdagger
@rdagger 6 лет назад
You could place an INA219 breakout board inline with a battery to measure the voltage and current draw as long as you are not pulling more the 3.2A. I don't understand what you mean by auto detect. You can have up to 16 INA219 boards connected to a Pi. Each would need a unique I2C address.
@AJB2K3
@AJB2K3 6 лет назад
At the moment you have to manually tell the software the address of the device after using i2c to detect the address. How about adding a function that auto-scans address and configures each device. 3.2A? Getting close to the limits of some circuits (one draws 2.8a @3.6v!)
@rdagger
@rdagger 6 лет назад
It's possible but you would have to ask ChrisB2 (the creator of the INA219 library): github.com/chrisb2/pi_ina219
@mustaphaejjayah520
@mustaphaejjayah520 4 года назад
is there Tutorial for Raspberry Pi Pycom wipy Power Measurement Tutorial ?
@rdagger
@rdagger 4 года назад
The author of the pi_ina219 library used in the video also has a MicroPython version: github.com/chrisb2/pyb_ina219 Chris's library is well documented and has sample code.
@colins2005
@colins2005 7 лет назад
Yes the GND is connected from the load supply to the Pi. What readings are expected with no connection to the bus terminals?
@rdagger
@rdagger 7 лет назад
I don't think it will work if you have the Vin+ and Vin- terminals floating. I'm guessing the voltage readings could be arbitrary. Try connecting a load such as a bulb or an LED and see if the readings are accurate.
@rdagger
@rdagger 7 лет назад
There is a post on the Adafruit forum that addresses floating inputs on the INA219: forums.adafruit.com/viewtopic.php?f=19&t=38745&start=15#p192276
@colins2005
@colins2005 7 лет назад
Ok so if the load is not connected I could get strange readings. As suggested I have used an LED with 120 ohm resistor supplied from a 3.7 v cell. I get current out of range error when the code runs. I have the max current set to 2A the load is only drawing a few mA.
@rdagger
@rdagger 7 лет назад
I just performed a similar test with an LED and it worked. Here's the code I used: from ina219 import INA219, DeviceRangeError from time import sleep SHUNT_OHMS = 0.1 MAX_EXPECTED_AMPS = 2.0 ina = INA219(SHUNT_OHMS, MAX_EXPECTED_AMPS) ina.configure(ina.RANGE_16V) def read_ina219(): try: print('Bus Voltage: {0:0.2f}V'.format(ina.voltage())) print('Bus Current: {0:0.2f}mA'.format(ina.current())) print('Power: {0:0.2f}mW'.format(ina.power())) print('Shunt Voltage: {0:0.2f}mV '.format(ina.shunt_voltage())) except DeviceRangeError as e: # Current out of device range with specified shunt resister print(e) while 1: read_ina219() sleep(1)
@colins2005
@colins2005 7 лет назад
Thanks for all your info. Unfortunately I am getting the same problem using your code, current out of range (overflow) for gain 0.32V device limit reached. Also the bus voltage is incorrect measured 3.7v printed value 2.96v.
@mintiwave6956
@mintiwave6956 6 лет назад
How to make foot stepper current
@rdagger
@rdagger 6 лет назад
I don't understand what you mean by foot stepper. Are you trying to convert mechanical energy to electrical energy and measure the current? Or are you referring to stepper motors?
@adamdenton4751
@adamdenton4751 4 года назад
Any way I could read up to 52ish V?
@rdagger
@rdagger 4 года назад
I don't have any first hand experience but there are probably many options. TI makes the INA169 and LM5056. Linear makes the LTC2945. I'd speak with TI and/or Linear tech support and ask for recommendations. You can also try Allegro MicroSystems: www.allegromicro.com and the Open Energy Monitor forum: community.openenergymonitor.org
@hamzamahmood5232
@hamzamahmood5232 5 лет назад
ina.current is giving fluctuating values.... i m using DC power supply
@hamzamahmood5232
@hamzamahmood5232 5 лет назад
kindly help
@rdagger
@rdagger 5 лет назад
Make sure you have the correct voltage and gain settings for your circuit. You can use multiple sampling and 12 bit resolution to improve accuracy. Please check out the Github site for more info: github.com/chrisb2/pi_ina219
@janiculmann7546
@janiculmann7546 7 лет назад
Hi, you import in the file: ina219.py Adafruit_GPIO.I2C as I2C. Where di you get this library from? I can't find this library and without it, it doesn't work.
@rdagger
@rdagger 7 лет назад
When you pip install the ina219 library, the dependencies should also be installed. Did you following the instructions on my website? Are you using the latest version of Raspbian Jessie?
@janiculmann7546
@janiculmann7546 7 лет назад
I now what the Problem is. In the LXTerminal it works perfeclty but It doesn't work with Phython3. The error message cames only when I would open it with Python3. I wanted to creat a window to show the current and voltage.
@rdagger
@rdagger 7 лет назад
You need to use pip3 to target Python3.
@TheGogo121212
@TheGogo121212 5 лет назад
I was wondering if I could use one of the pictures (The one which shows how to connect the ina to the pi) in this video in a GitHub project that uses the ina219, I found it very informative and simple, would you mind that? I will be sure to give credits and give the source link.
@rdagger
@rdagger 5 лет назад
Yes, you can use the photo.
@TheGogo121212
@TheGogo121212 5 лет назад
Thanks alot, your content was very helpful btw. @@rdagger
@ScinnerNo1
@ScinnerNo1 5 лет назад
Hi and thx for the video! I have a couple of questions. 1. Do I have to messaure the current to get this to work or can I use it as a pure Volt meter? 2. You said that you can daisy chain them, could I messaure four different voltage sources with four of these? 3. Is it possible to skip the lcd and have the voltage shown on screen in Raspian? Thank you very much!
@rdagger
@rdagger 5 лет назад
1. Yes, you can measure only voltage. 2. Yes. Each board needs a unique I2C address. This breakout board has jumpers for 4 different addresses (0x40, 0x41, 0x44 and 0x45) 3. Yes. The LCD is only for demonstration purposes.
@ScinnerNo1
@ScinnerNo1 5 лет назад
Thx!!!!
@javierpallalorden
@javierpallalorden 4 года назад
You could use the ina226, it can measure up to 36V and is very accurate.
@synergytech474
@synergytech474 4 года назад
​@@rdagger Hi and thx for the video! on your response on the point 3, how have the voltage shown in raspbian instead of the LCD screen? please and thank you
@rdagger
@rdagger 4 года назад
You can use the python print command.
@kuban6141
@kuban6141 4 года назад
Hello, very nice video, thank you! I have a noob question. I want to measure voltage and amps of my 10W solar panel. Could I connect my solar panel directly to INA219? I see you connected the lamp between INA219 and power supply but it is just for test purposes and to test the "power" of your light on specific input voltage, right?
@rdagger
@rdagger 4 года назад
Not sure what you mean by directly, but you can measure current and voltage of a solar panel assuming you have a load.
@kuban6141
@kuban6141 4 года назад
@@rdagger that was exactly what I mean, thank you. So I need to find some light bulb and place it between INA219 and solar panel
@rdagger
@rdagger 4 года назад
@@kuban6141 Place the INA219 between the solar panel positive lead and the bulb positive lead. A better way to monitor solar power is to interface with a charge controller. I have a tutorial on the subject: www.rototron.info/raspberry-pi-solar-serial-rest-api-tutorial/
@kuban6141
@kuban6141 4 года назад
@@rdagger Thank you very much!
@nathanieladams3176
@nathanieladams3176 6 лет назад
I’m quite unfamiliar with the ina219. Could you use multiple ina219 boards to measure voltage on individual cells in series in a battery pack?
@rdagger
@rdagger 6 лет назад
In theory it would work but you would have to wire the INA219 in series.
@nathanieladams3176
@nathanieladams3176 6 лет назад
Thanks for the prompt reply! I guess that would limit me to 26v?
@rdagger
@rdagger 6 лет назад
Yes. Furthremore, I don't think this would give you the desired results since the voltage would be cumulative. I'd ask around the RC forums.
@yugeshkc9026
@yugeshkc9026 4 года назад
Can we connect two INA 219 with a Raspberry PI ?
@rdagger
@rdagger 4 года назад
Yes, see my site for details.
@yugeshkc9026
@yugeshkc9026 4 года назад
@@rdagger thanks
@williamscally3984
@williamscally3984 5 лет назад
Great Video. I am trying to measure .050 to .005 mV range. Is this board capable or do you have any suggestions?
@rdagger
@rdagger 5 лет назад
No, the resolution is only 12 bit over 0-26V. I don't know of any hobbyist sensors that will meet your accuracy requirements. I recommend you ask Texas Instruments tech support. They make a lot of other voltage/current sensors.
@williamscally3984
@williamscally3984 5 лет назад
@@rdagger thank you, a friend of mine mentioned that I might be able to use a mosfet do you have any experience working with these?
@rdagger
@rdagger 5 лет назад
DIY high accuracy, stability and linearity can be challenging due to the influences of noise, EMF, temperature, etc. It may also require expensive equipment to calibrate. There are many new high resolution ADC chips available. I recommend you post your question to a metrology forum: www.eevblog.com/forum/metrology/ Be sure to provide a detailed outline of your requirements such as accuracy, sensitivity, resolution, range, are you measuring voltage only or voltage & current, are you measuring DC only or DC & AC and a summary of your project.
@sallen135
@sallen135 6 лет назад
How would the wiring go to the INA to measure battery voltage alone with no load?
@rdagger
@rdagger 6 лет назад
Connect the positive of your battery to Vin+ on the INA219. Connect the negative of your battery to the INA219 ground.
@sallen135
@sallen135 6 лет назад
rdagger68 great, thank you! Also, you said you can daisy chain multiple ina’s. If you wire them all to 3.3 and ground, and all to the same 2 i2c pins, will they all be given different hexadecimal values? If so, how many different ID’s can be used?
@rdagger
@rdagger 6 лет назад
You need to set a unique address for each INA219 using pins A0 and/or A1. Table 1 in the datasheet lists the 16 possible combinations. Many of the breakout boards have AO and A1 pads that can easily be jumped with solder to VS+ which gives you 4 easy to set addresses 0x40, 0x41, 0x044 and 0x45.
@sallen135
@sallen135 6 лет назад
I have set up this no load configuration with an 18650 battery around 4.09V. I am using the code without an LCD display from www.rototron.info/raspberry-pi-ina219-tutorial/ and am getting the following results: Bus Voltage: 2.57V Current out of range (overflow), for gain 0.32V, device limit reached Do you have any suggestions about what to do next? I am simply trying to get a Pi output with the correct battery voltage.
@suranjandey3992
@suranjandey3992 6 лет назад
can i measure active and reactive power drawing by heavy load by supplying 220 v??
@rdagger
@rdagger 6 лет назад
The INA219 can only measure DC voltage up to 26V.
@suranjandey3992
@suranjandey3992 6 лет назад
whta can i use for that?? for a.c
@rdagger
@rdagger 6 лет назад
Please consult with an electrical engineer before experimenting with lethal AC voltages. Sorry I’m not aware of any safe hobbyist solutions. You could try the Open Energy Monitor forum: community.openenergymonitor.org/
@omkarjoshi6252
@omkarjoshi6252 5 лет назад
I have one question What if we want to charge battery from the solar panels and measure the power of the solar panels. It would work ?
@rdagger
@rdagger 5 лет назад
You can measure the voltage and current coming from a solar panel as long as you do not exceed 26V and 3.2A. However, most solar charge controllers already provide this data. Please check out my solar tutorial: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-1VxP38XlVEQ.html
@omkarjoshi6252
@omkarjoshi6252 5 лет назад
@@rdagger I saw your video but my panel output is around 21 volt and 2.5 A max. Actually I am doing college project so I just want to calculate power generation by panel and power consumption by pi. So can I use this method ?
@rdagger
@rdagger 5 лет назад
You should be able to use an INA219 to track the voltage and current of a panel. A 2nd INA219 should be able to track the Pi's voltage and current consumption.
@omkarjoshi6252
@omkarjoshi6252 5 лет назад
@@rdaggermeans this set will work ?
@rdagger
@rdagger 5 лет назад
It depends on your components and the desired goals. A good charge controller would probably provide more meaningful results on its data bus. An INA219 inline with the solar panel should give you accurate voltage levels during the day and show how much current the charge controller is drawing. An INA219 inline with the Pi will show you the Pi's voltage and how much current it is drawing.
@SohanChhangani
@SohanChhangani 3 месяца назад
Can we use the same for any different processors with Android os in it ?
@rdagger
@rdagger 3 месяца назад
Any board that supports I2C should be compatible assuming you can get a driver for it.
@SohanChhangani
@SohanChhangani 3 месяца назад
@@rdagger ya so I got the driver as well as my pcb supports ina219 but the thing is I am not able get the data from it. Would be great if you could guide me 🙏🏻
@rdagger
@rdagger 3 месяца назад
@@SohanChhangani What board are you using? What driver are you using? What error message are you getting?
@SohanChhangani
@SohanChhangani 3 месяца назад
@@rdagger custom pcb with cm3566 som
@rdagger
@rdagger 3 месяца назад
@@SohanChhangani Sorry I don’t have any experience with the CM3566. Generally speaking, I would do the following: 1. Verify your wiring is correct and try to keep the lengths as short as possible. 2. Check with the manufacturer and see if external pull-up resistors are required. 3. Find an Android I2C test utility and see if the address of the INA219 shows up. 4. Find a forum that specializes in Embedded Android Development or Android IOT Development.
@XenoContact
@XenoContact 5 лет назад
Hey I have looked everywhere I can't find a solution, my problem is I want the raspberry pi 3 to be able to measure the voltage going through an externally powered LED, I only have access to the LED's legs, none of the circuit behind it is accessible. Can this be done?
@rdagger
@rdagger 5 лет назад
You could measure the voltage at the LED anode. You would connect Vin+ to the anode and leave Vin- disconnected. If you had a second INA219 you could also measure the voltage at the cathode and then you would be able to determine forward voltage drop. There would need to be a common ground between the INA219 and your circuit.
@XenoContact
@XenoContact 5 лет назад
Is there absolutely no way to do it just through the LED's legs without connecting its circuit's ground to the INA219/raspberry pi 3 ?
@rdagger
@rdagger 5 лет назад
The LED cathode might be at ground. If that's the case you have your ground. However, the cathode could instead be in series with a resistor. The case of the device in question might also be at ground. Generally speaking, you can't measure voltage of a circuit without a ground reference because the definition of voltage is a potential difference. Why do you want to measure the voltage?
@XenoContact
@XenoContact 5 лет назад
I have a device which measures power across home appliances and based on the measured values it would turn on some LEDs as to indicate how much I am consuming. I am trying to detect when some of those LEDs are ON/OFF and sending that to a raspberry pi which would in turn send me an email/sms warning. The measuring device is very tightly locked and I prefer not to touch its internal circuits which is why I am left with only the LED legs. I hope there is some way I can achieve this ? Thank you for being helpful !
@XenoContact
@XenoContact 5 лет назад
Any idea Please ? I can't find anymore help on this
@omkarjoshi6252
@omkarjoshi6252 6 лет назад
It is not working in python 3 versions what should I do ??
@rdagger
@rdagger 6 лет назад
What error message are you getting? Did you use pip3 to target python 3?
@mohamadhelmiakmalkamarular2527
hi. I follow all instruction in ur video and ur page. but I have some problem. some error. can u guide until I get the reading
@rdagger
@rdagger 6 лет назад
What is the error message?
@mohamadhelmiakmalkamarular2527
======================== RESTART: /home/pi/ina219.py ======================== Traceback (most recent call last): File "/home/pi/ina219.py", line 1, in from ina219 import INA219, DeviceRangeError File "/home/pi/ina219.py", line 1, in from ina219 import INA219, DeviceRangeError ImportError: cannot import name INA219 >>> ======================== RESTART: /home/pi/ina219.py ======================== Traceback (most recent call last): File "/home/pi/ina219.py", line 2, in from ina219 import INA219 File "/home/pi/ina219.py", line 2, in from ina219 import INA219 ImportError: cannot import name INA219 >>>
@mohamadhelmiakmalkamarular2527
this error . can u help me
@rdagger
@rdagger 6 лет назад
Are you using auto gain? What voltage and current are you trying to measure?
@mohamadhelmiakmalkamarular2527
the led . I want measure voltage and current this led. . auto gain ? can u give email to me. I sent pic. help me pls
@antisocialboy818
@antisocialboy818 3 года назад
Hi, can I use this to measure a 12V 50AH battery?
@rdagger
@rdagger 3 года назад
Yes as long as the load doesn’t exceed 3.2 amps.
@antisocialboy818
@antisocialboy818 3 года назад
Hi, I'm really sorry to bother you but I'm actually tryna measure the amps, volts, and power of a charging 24 volt battery with a RPI that's being charged by a solar panel (I'm building a portable solar charger for my school project). So, if I need to measure amps that's more than 3.2 amps I need to get a lower value resistor for the INA board? Also, you mentioned that another alegro board is suitable for higher amps, If I get that, will the steps in this tutorial be the same? I'm struggling with this and I really need to pull my grades up :( I hope you can help me. Thank you and have a great day
@rdagger
@rdagger 3 года назад
@@antisocialboy818 The Allegro is just and AC or DC current sensor. It doesn't measure voltage and it produces an analog output as opposed to digital. There are many other sensors that would probably be a better fit such as the INA260: www.adafruit.com/product/4226 You should ask Texas Instruments tech support for a recommendation.
@antisocialboy818
@antisocialboy818 3 года назад
@@rdagger will do, thank you :)
@bagusrinaldi7596
@bagusrinaldi7596 5 лет назад
how about batrey capacity ? did u ever try it ?
@rdagger
@rdagger 5 лет назад
I don’t have any tutorials on measuring battery life. You could use an INA219 to determine average current consumption which could be used to derive run-time: Battery capacity (mAh) / Average current consumption (mA) = Hours of expected run-time
@leblancexplores
@leblancexplores Год назад
Hall sensors are not reliable!
@SaeedAhmed-ix8nm
@SaeedAhmed-ix8nm 6 лет назад
I want to use a solar panels with output of 90 V. Can you please tell me how I can achieve this?
@rdagger
@rdagger 6 лет назад
What do you want to measure?
@SaeedAhmed-ix8nm
@SaeedAhmed-ix8nm 6 лет назад
rdagger68 I want to measure the current, and voltage produced by the solar panels.
@rdagger
@rdagger 6 лет назад
First when dealing with lethal voltages I strongly recommend that you confer with a qualified electrician. Since you are working with solar, the most efficient approach would be to use a 96V MPPT charge controller with an RS232 or RS485 data output which could easily be polled by a microcontroller or computer such as the Raspberry Pi to provide detailed energy usage. I have a tutorial on the subject: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-1VxP38XlVEQ.html Another option is the Open Energy Monitor project which provides comprehensive open source solutions for monitoring solar power and other energy use: openenergymonitor.org/
@GiovanniAzpeitia17
@GiovanniAzpeitia17 6 лет назад
rdagger68 is there a way to measure the voltage produced by the solar panel with the method showed in this video? Instead of measuring the power consumed by the lamp, maybe I can do the same for the panel..
@GiovanniAzpeitia17
@GiovanniAzpeitia17 6 лет назад
rdagger68 thank You! Very good tutorial
@kenstovall5091
@kenstovall5091 5 лет назад
Will this work for monitoring ac current? Thanks!
@rdagger
@rdagger 5 лет назад
No. You can use a hall effect-based sensor such as the Allegro ACS712. Please be careful if working with potentially lethal mains electricity.
@kenstovall5091
@kenstovall5091 5 лет назад
Not a problem working with electricity.....im also a lic electrician. :-) Thanks for your help!!
@georgelza
@georgelza 5 лет назад
what can i do to measure up to 150V and 40Amp?
@rdagger
@rdagger 5 лет назад
Please consult with an electrical engineer or electrician before experimenting with lethal voltages. You could try the Open Energy Monitor forum: community.openenergymonitor.org/
@georgelza
@georgelza 5 лет назад
@@rdagger know that, be careful, and also know how dangerous 150V / 100 Amp is... now that the disclaimer is out of the way, anyone help, and no OEM can't at this stage as all their stuff is AC based.
@rdagger
@rdagger 5 лет назад
You can try Allegro MicroSystems: www.allegromicro.com/
@stonkyboy7606
@stonkyboy7606 2 месяца назад
i2c isnt being detected! I wired everything like you did but I doesn't work! Do you have any idea why? I checked some forums but nothing works
@stonkyboy7606
@stonkyboy7606 2 месяца назад
I installed all the libraries but nothing is showing
@rdagger
@rdagger 2 месяца назад
Did you enable I2C using raspi-config? Did you verify the address using i2cdetect?
@stonkyboy7606
@stonkyboy7606 2 месяца назад
@@rdagger Thanks for the quick response time! I enabled I2C via the Raspberry Pi Configuration menu and i wouldn't get any detection using i2cdetect. I made sure i connect the pins to the proper gpio pins and everything.
@stonkyboy7606
@stonkyboy7606 2 месяца назад
@@rdagger Could there be an issue if the wirelength of the wires I used to connect the pins is a bit long? The wires about a foot long.
@rdagger
@rdagger 2 месяца назад
@@stonkyboy7606 1 foot is within spec but I would test the wires with a meter and try swapping them out. What Pi are you using? You could have a bad INA219.
@IUMadBroI
@IUMadBroI 7 лет назад
Is it possible to use more than one INA219 for the python script?
@rdagger
@rdagger 7 лет назад
Yes. Each one needs a unique address. See table 1 in the datasheet for the address pin settings.
@IUMadBroI
@IUMadBroI 7 лет назад
@rdagger68 Ah ok thanks! Will the library also work for INA226?
@rdagger
@rdagger 7 лет назад
I haven’t tried, but I would guess no. You could submit a feature request to chrisb2. It looks like he has made updates to the library since the video came out.
@hamzamahmood5232
@hamzamahmood5232 5 лет назад
Can i use it to measure current in micro amps....
@rdagger
@rdagger 5 лет назад
I don't think it would be a good choice because the input bias is probably too high. I'd check with Texas Instruments support. They can recommend an optimal device for your needs.
@hamzamahmood5232
@hamzamahmood5232 5 лет назад
@@rdagger can you name
@hamzamahmood5232
@hamzamahmood5232 5 лет назад
@@rdagger actually i m working on wood moisture meter and i have to measure serial current though wood. which i consider will be in micro
@rdagger
@rdagger 5 лет назад
Dave Jones makes a precision current adapter: www.eevblog.com/projects/ucurrent/
@bactivickarazi6209
@bactivickarazi6209 7 лет назад
Hi,I've installed 2017-07-05-raspbian-jessie and trying to update it using apt-get update and apt-get upgrade. The problem is I keep getting the bellow error. I tried all solutions found on google but non worked so I appreciate any helppi@raspberrypi:~ $ sudo apt-get upgradeReading package lists... DoneBuilding dependency treeReading state information... DoneCalculating upgrade... DoneThe following packages will be upgraded:libgcrypt20 libtiff52 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.Need to get 0 B/536 kB of archives.After this operation, 5,120 B of additional diskspace will be used.Do you want to continue? [Y/n]
@rdagger
@rdagger 7 лет назад
Maybe I'm too tired but I do not see an error message. I see a prompt to continue.
@bactivickarazi6209
@bactivickarazi6209 7 лет назад
rdagger68 Why when I update sudo can not just any posts need additional memory y / n
@bactivickarazi6209
@bactivickarazi6209 7 лет назад
Can you speak Indonesian?
@rdagger
@rdagger 7 лет назад
Sorry no.
@rdagger
@rdagger 7 лет назад
I don't understand. Maybe you have a bad sd card. Did you expand the SD card?
@addohm
@addohm 3 года назад
I dont recommend trying to measure 32 amps on that board. Its not built for it at all.
Далее
Raspberry Pi Battery Power
20:34
Просмотров 340 тыс.
Raspberry Pi Analog Water Sensors ADC Tutorial
19:24
Просмотров 107 тыс.
Never Troll Shelly🫡 | Brawl Stars
00:10
Просмотров 685 тыс.
Make your own Power Meter/Logger
6:33
Просмотров 1 млн
Using a 16x2 LCD Display with a Raspberry Pi
12:19
Просмотров 395 тыс.
10 Minute Arduino Project - INA219 Current Sensor
10:42
Can You Drive On Wood Wheels?
19:42
Просмотров 91 тыс.
Raspberry Pi Solar Serial REST API Tutorial
16:44
Просмотров 88 тыс.
📱магазин техники в 2014 vs 2024
0:41