Thank you Sir! I liked the tutorial and learned a lot about the combination of those two strong players (Arduino + Python) in the IoT.
@Gabasbds5 жыл бұрын
Thank you so much! I was stuck in my project, but with your video I was able to get it done!
@apm5 жыл бұрын
I'm glad it helped.
@jameswelperez31853 жыл бұрын
Does pyFirmata support SIM808 GPS Module and Arduino Uno? I want to interface and get the GPS location data real time using Python.
@apm3 жыл бұрын
pyFirmata is a generic interface to the Arduino. It allows you to read the pins and control the digital outputs. The SIM808 has an ATMega328 that likely has custom firmware to read from the GPS and make the data available through Bluetooth. I do not recommend overwriting the Firmware with the Standard Firmata.
@RunningRunner46 Жыл бұрын
my arduino program stops working when I terminate the consol why??. how can I store my upload inside arduino?? as soon as I close python the arduino board stops working
@apm Жыл бұрын
pyFirmata communicates over a serial port to read and write instructions. The instructions come from the attached computer. When the cord is disconnected, the instructions stop. Embedded code is needed to continue running on the Arduino. Options are MicroPython: apmonitor.com/dde/index.php/Main/SensorMeasurement or the Processing IDE to compile and run C code on the Arduino.
@rrocky20_2 жыл бұрын
How can i make a door lock system with Arduino + a face mask detection as my project ?
@apm2 жыл бұрын
An Arduino likely wouldn't have enough CPU / memory to handle the task. Maybe try a Raspberry Pi or other type of more capable compute modules. Here is some help on the face detection: apmonitor.com/pds/index.php/Main/FacialRecognition
@j.a.m.s63403 жыл бұрын
thank you so much, i have been looking how to do this for days and now i found it, thank you so much
@SunilBisoyisbsunil3 Жыл бұрын
How to read I2C data received from acclerometer? This averages all the acceleration values and gives an overall acceleration. I want to receive all the data from all three axes.
@apm Жыл бұрын
Here is another I2C device connection. apmonitor.com/dde/index.php/Main/TemperatureSensor Try looking online for Arduino or Micropython code for your device.
@mattm74824 жыл бұрын
Thanks for the help on Pyfirmata with setting things up!
@duller94303 жыл бұрын
Do u have a video about arduinos for complete beginners on how to code. Btw not for python
@apm3 жыл бұрын
It is Processing (C±± code). You can get any C±± tutorial to help you get started.
@khaileng30202 жыл бұрын
I got an error of AttributeError : 'module' object has no attribute 'main'
@apm2 жыл бұрын
Try renaming your script file as something else than main.py. Does that help? www.linuxquestions.org/questions/linux-software-2/python-attributeerror-%27module%27-object-has-no-attribute-%27main%27-4175478873/
@Koolkole272 жыл бұрын
Will this work if you have it not connected to the computer like you can with the default code language of the audrino? Like load the code to it then un plug it from the pc and have it exicute the code?
@apm2 жыл бұрын
You would need to use microPython if you want to run Python on the device. The ESP32, Teensy, or pyBoard, or others can run a simplified version of Python.
@sudeshkumar56404 жыл бұрын
Hello sir, I am a Macintosh user. Is there a way to use pyfirmata and get the data because I don't have the name as "COM 3 or COM 4".... What can I do??
@apm4 жыл бұрын
Search for /dev/tty.usbserial* or /dev/cn.* (on MacOS) and /dev/ttyUSB* or /dev/ttyACM* (on Linux).
@pedroandretube5 жыл бұрын
Sorry, I'm no specialist in Arduino nor in Python, but to me it looks inconsistent that you make such workaround to the case someone doesn't have the needed library pyfirmata installed, but then you hardcode the port where the Arduino is connected. Is there a way to search for the COM port where the Arduino is connected?
@apm5 жыл бұрын
Check out the find_arduino code here: github.com/jckantor/TCLab/blob/master/tclab/tclab.py This can help you find the port automatically for Windows, Linux, or MacOS.
@teddyhraje51174 жыл бұрын
Hello, I have installed pyfirmata but when i wrote this: from pyfirmata import Arduino, util. It gave me ImportError: cannot import name 'Arduino' from partially initialized module 'pyfirmata' (most likely due to a circular import). Does anyone know how to fix this?
@apm4 жыл бұрын
This can happen if you named your program pyfirmata.py. Try changing the name to something else like test_pyfirmata.py. Here is additional help on pyFirmata: pypi.org/project/pyFirmata/
@jumbo9996144 жыл бұрын
I got error at 8:04 : 'pip' has no attribute 'main'
@apm4 жыл бұрын
Try this instead: apmonitor.com/wiki/index.php/Main/GekkoPythonOptimization?action=sourceblock&num=1 but replace gekko with the package name.
@khaileng30202 жыл бұрын
Can u make a video of pyfirmata with hc-06 bluetooth ?
@apm2 жыл бұрын
Thanks for the suggestion.
@jasonackermann78044 жыл бұрын
Does pyFirmata also support the Elegoo UNO R3? Thank you!
@apm4 жыл бұрын
Yes, it should work with any UNO R3 device. The Elegoo is just the name of the company that produces the UNO R3.
@rosedew59323 жыл бұрын
Hi, I'm actually trying to connect my phyton code with arduino using pyserial but I can't run the code so I found your video. I will try this pyFirmata package later but how does the two relate with each other? I mean pyserial and pyFirmata?
@apm3 жыл бұрын
pyserial just communicates over a serial connection while pyFirmata also includes the firmware for communication. If you use pyserial, you'll need to write your own firmware such as done here: apmonitor.com/heat.htm
@Omaralejandroli4 жыл бұрын
I'm sorry, I'm new in this area, my question is: what's the reason why you define the variable "iterator"? It's the only thing that I didn't understand their function
@apm4 жыл бұрын
I'm not sure why the package requires it but I think it is so that you can make repeated calls to get data.
@Omaralejandroli4 жыл бұрын
@@apm such a fast answer, I really appreciate it, do you have some URL or website where I can learn how to make an interface Arduino-Python? It's my last question, thanks!!!
@apm4 жыл бұрын
Here are additional examples: apmonitor.com/heat.htm You can write custom firmware or use pyFirmata.
@durgakrishnan85263 жыл бұрын
Tq somuch sir. It will take twodays to catch this concept. This is the end point to my question which i was search in several websites🙏🙏🙏
@jinaykothari45112 жыл бұрын
Do you have an arduino simulator with python
@apm2 жыл бұрын
Yes, here is an offline emulator for the TCLab that is based on an Arduino Leonardo: tclab.readthedocs.io/en/latest/notebooks/04_Emulation_of_TCLab_for_Offline_Use.html There are also emulators such as micropython.org/unicorn/
@mdmohidulhasan5884 жыл бұрын
Can you explain exactly how you back propagated from pyfirmata analog read which is 0 - 1 to ADC 10 bit 0 - 1024 . Is there a way to scale the raw sensor data back to 10 bit ADC ??
@apm4 жыл бұрын
More information on reading the temperature sensor is here: apmonitor.com/pdc/index.php/Main/TCLabSensor
@mmols99043 жыл бұрын
thank you ,, very interested i have just installed it !! works great !!
@Zainab-mm2yk4 жыл бұрын
how can I convert the analog value to the actual value sensor that has been reading? As you've mentioned (value*5000-500)/10 is the same for all kinds of sensors on Arduino Uno?
@apm4 жыл бұрын
Each sensor has its own relationship between voltage and the measured value. You can typically find it in the documentation for the sensor.
@crimsonburn123 жыл бұрын
HI, i keep getting a module not found and ive already downloaded it multiple times
@apm3 жыл бұрын
You probably have multiple versions of python on your computer. Here are some tips on installing packages: apmonitor.com/pds/index.php/Main/InstallPythonPackages
@ritafarsoun97483 жыл бұрын
You are a born teach! Seriously most tuts don't have that clear explanation. Need to ask though hopefully I'll get an answer C++ or python? I feel python easier to understand maybe because I'm a little bit familiar with the basics. I will be focusing at 1st on automation building then i would like to learn about creating prothesis that respond muscle movement ect. That's my future aim So python or c++
@apm3 жыл бұрын
I'd recommend that you start with Python. C++ is good for programming the Arduino if you want the code to run on the device without any external connection. For development, Python is better.
@kellerwaldron24525 жыл бұрын
is it possible to upload the python code to the arduino in the same way you upload a sketch to the arduino? the purpose here being so you can disconnect from the serial port.
@apm5 жыл бұрын
Here are some tips on doing this: arduino.stackexchange.com/questions/105/programming-an-arduino-using-python-rather-than-c-c and stackoverflow.com/questions/8114916/is-there-a-way-to-compile-python-code-onto-an-arduino-uno
@keremakd56514 жыл бұрын
can i upload the python code to the arduino- or is it only usable if it is connected to the computer
@apm4 жыл бұрын
You can't upload Python to the arduino. It needs to run through a serial connection.
@waleedaiad34112 жыл бұрын
How can i use hc-12 with arduino using python language?
@apm2 жыл бұрын
Probably not with Python: howtomechatronics.com/tutorials/arduino/arduino-and-hc-12-long-range-wireless-communication-module/
@lucderan5 жыл бұрын
thank for sharing! Very useful! I was going to get rid of my arduino since i switched to micropython and ESP32! #SaveAnArduinoUseFirmata!!
@apm5 жыл бұрын
That was close!
@hudakhafaji41804 жыл бұрын
Thank you for such an informative video!! If it's ok to ask, is there a way for me to control the arduino without having to plug into the computer? (For example, over a wifi connection maybe?)
@apm4 жыл бұрын
Yes, there are wireless connections such as Bluetooth. If you write your own firmware (ino) file then you can control the Arduino with no connection. If you want to use Python then you'll need to be connected either with a USB cable or WiFi / Bluetooth.
@jeremiahhardge69683 жыл бұрын
is it possible to run a python script with imported modules on an arduino?
@apm3 жыл бұрын
Unfortunately, that is not possible to run directly on the Arduino.
@hightechtoucan42364 жыл бұрын
This is a fantastic tutorial, what is the spec of the 'heater' component? looking to build one myself :)
@apm4 жыл бұрын
There is more info on the lab at apmonitor.com/heat.htm They are also available through Paypal or Amazon.
@hightechtoucan42364 жыл бұрын
@@apm Thanks
@copycarvers Жыл бұрын
getting this error AttributeError: module 'serial' has no attribute 'Serial'
@apm Жыл бұрын
You probably installed the wrong package "serial". Try "pip uninstall serial" to remove the package and "pip install pyserial" to install the correct package. More details here: stackoverflow.com/questions/11403932/python-attributeerror-module-object-has-no-attribute-serial
@GabrielCarvalho7774 жыл бұрын
Hi professor, thank you very much for all videos and tutorials, I'm a big fan of ur work. Is there any way you could provide those images of those circuits (specially in minute 3:35), when you show how to 'do it yourself' the whole thing? Thanks!
@apm4 жыл бұрын
Here is more info on building the lab: apmonitor.com/che436/index.php/Main/PhysicalLab and apmonitor.com/pdc/index.php/Main/ArduinoTemperatureControl You can also order one on Amazon or through Paypal.
@GabrielCarvalho7774 жыл бұрын
@@apm Thank you, actually I'm the 'do it yoursefl' kinda person haha but I'm surely thinking about buying it! Again, thank you for your time!
@johna.villamil27733 жыл бұрын
Hi @@GabrielCarvalho777 Could you build the system ?
@Taran724 жыл бұрын
Interesting video...had no idea Pyfirmata existed, thank you so much! Question: can I use Pyfirmata with multiple Arduino's?
@apm4 жыл бұрын
Yes, just specify the connection such as different COM ports in Windows.
@Taran724 жыл бұрын
@@apm , thanks!
@RenalTutor4 жыл бұрын
thank you sir. but, can code python upload to arduino, and running it without open computer ?
@apm4 жыл бұрын
Unfortunately that isn't possible with an Arduino Uno. There are other microcontrollers or microprocessors such as the Raspberry Pi that can run Python.
@RenalTutor4 жыл бұрын
@@apm oke sir. thank you very much
@giobarista28823 жыл бұрын
You are the man my friend thank u!!
@yueverlasting7 жыл бұрын
hi~ I'm a student from Taiwan. May I ask some question about pyfirmata? I use Arduino uno & DHT11 senser to try this example. But I can't access the data from analog port. I can get right data in arduino Serial port monitoring window. however, I can't get any data in python. if time is allowed, hope you can help me to slove this problem. Thanks
@apm7 жыл бұрын
+Yu Chieh Huang, the DHT11 or DHT22 produces a digital signal (series of 1s and 0s) that you need to decode to get numbers. You should connect to a digital pin instead of an analog pin. Here is some additional help: www.circuitbasics.com/how-to-set-up-the-dht11-humidity-sensor-on-an-arduino/
@yueverlasting7 жыл бұрын
hi Sorry for asking more question. I change my sensor to digital pin but I still can't get any data. I also use YL-69 Moisture Sensor . However it can't work too. Both digital and analog pins didn't work. I try two ways to use read() 1. define the pin at first. pin_temp = board.get_pin('d:2:i'); result_temp = pin_temp.read() 2.result_temp =board.digital[2].read() I'm not sure if i use in wrong way or not. If you have any idea about this, please share with me. Thanks for your reply
@apm7 жыл бұрын
You won't be able to use pyFirmata to read those values. You'll need to use the custom code for DHT11 that is outlined in the link I sent. The digital pin only reads a 1 or 0. The DHT11 sends a series of 1s and 0s that you need to decode such as 11001110000101001000111000011010001010 => T=30 degC and Relative Humidity=25. Those aren't correct 1s and 0s but it hopefully gives you an idea. The DHT11 code should work if you follow the instructions on the link I sent.
@nobytes26 жыл бұрын
if you want to use pyfirmata you'll have to roll your own firmata firmware by adding dth11 header file and use those functions for decoding which is the easiest route to take here. Or else you'll have to write a python decoder but with serial latency I don't know if is feasible to read 1/0s from a digital input over serial and then decode. Edit: Nevermind, I don't think firmata will work. You'll have to use plain pyserial and write custom sketch for arduino.
@shaymckim52024 жыл бұрын
You are a genius!!! Thank you sooooo much!
@laohanme72813 жыл бұрын
Great tutorials, but now I looking for the solution for pyfirmata connect with my 4x4 keypads.
@mr.47hitman195 жыл бұрын
Thank you. I have a question, Is it possible to add Q-learning algorithm by tensorflow and python? please help me..I want to make q-leaning (reinforcement learning) machine like a crawling robot.
@apm5 жыл бұрын
I don't have experience with Q- learning.
@mr.47hitman195 жыл бұрын
@@apm Thank you for your reply.
@duller94303 жыл бұрын
Does this work on Mac
@apm3 жыл бұрын
Yes, no problems with a MacOS. I recommend the Arduino Leonardo for MacOS.
@sahajrajmalla4 жыл бұрын
can't we use the arduino by unplugging from our PC ?
@apm4 жыл бұрын
Yes, you can but not with PyFirmata. You'll need to write custom firmware with the Processing Language (C code). There is no way to have it run Python without a serial connection to a computer.
@sahajrajmalla4 жыл бұрын
@@apm Thank you Sir!
@sbksdg70192 жыл бұрын
Thank you sir!! How do i upload the code there??
@apm2 жыл бұрын
You need to download the Arduino IDE. See the instructions starting from 0:40
@dudezgamez5505 жыл бұрын
My computer said it could not access the port. What can I do?
@apm5 жыл бұрын
What operating system are you running? If it is Windows then check the device manager as you plug it in. You should see it appear. You may need to adjust the COM port number for the Serial Interface. Here are some additional tips from the TCLab: apmonitor.com/pdc/index.php/Main/ArduinoSetup
@gatiktrivedi78635 жыл бұрын
is it necessary to have the firmware in the Arduino software?
@apm5 жыл бұрын
The firmware is a default option in the Arduino IDE. Yes, it is required to run pyFirmata. You only need to load it once, however, and it will stay on the device even if power is cycled off.
@misterx52016 жыл бұрын
Awesome Video ...keep it up man...❤
@nitpu21124 жыл бұрын
can you explain the installation process of python
@apm4 жыл бұрын
Yes, here is help on installation: apmonitor.com/pdc/index.php/Main/InstallPython
@emreaka39655 жыл бұрын
Can we write program with Python to Arduino?
@apm5 жыл бұрын
Yes, pyFirmata is one way to communicate from python to the Arduino. You can't use Python directly on the Arduino so you need to connect with a serial connection such as with a USB cable.
@emreaka39655 жыл бұрын
@@apm Thank you so much.
@fahimmuntasirniloy2 жыл бұрын
Thanks a lot, this was very helpful sir
@premithmendis80043 жыл бұрын
what a wonder explanation thank you i learned a lot
@lataarya26113 жыл бұрын
hello bhaiyaan maine bhi aisa arduino uno purchase kiya hain aur code editor bhi same hain arduino ka par main usme serial port select nahi kar paa raha hoon so pls make a tutorial on how to download arduino ite editer to how to upload code to arduino uno . Thanks .
@apm3 жыл бұрын
I don't think I understood a lot of your comment but this may help: apmonitor.com/pdc/index.php/Main/ArduinoSetup
@GiuseppeDeLilla4 жыл бұрын
i can't install pyfirmata in Raspberry Pi 4 ?of this form.can you HELP me Thank you
@apm4 жыл бұрын
Sorry, I haven't installed it on a Raspberry Pi previously. Maybe try this: raspberrypi-aa.github.io/session3/firmata.html
@rancmeat6 жыл бұрын
Excellent tutorial, thank you.
@christianbegg24656 жыл бұрын
What is the difference between using pyfirmata with Arduino and the pyBoard?
@rrc6 жыл бұрын
pyBoard is another type of microcontroller that may be able to run pyFirmata as well. pyFirmata is a standard firmware that accelerates development by making standard the interface to the gpio pins.
@mrtabisdad6 жыл бұрын
Both pieces of hardware do very similar things, but I believe the pyBoard to be a bit more expensive in my experience - but if you use an ESP32 running microPython, then the costs come right down. Just starting to play, so not that experienced as yet...
@akankshasontakke27146 жыл бұрын
can you provide me the code for IR sensor values in python shell (arduino)
@apm6 жыл бұрын
Sorry, I don't have data from that type of sensor.
@MrTeose4 жыл бұрын
How can I use the SCL and SDA of my arduino using pyfirmata
@apm4 жыл бұрын
I'm not sure about that.
@kit09255 жыл бұрын
.....I know this video is 2 years ago, but it is useful to a beginner like me. When I'm running: board = Arduino('COM6') I got an error: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in 7 import time 8 ----> 9 board = Arduino('COM6') 10 iterator = util.Iterator(board) 11 iterator.start() ~\Anaconda3\lib\site-packages\pyfirmata\__init__.py in __init__(self, *args, **kwargs) 17 args = list(args) 18 args.append(BOARDS['arduino']) ---> 19 super(Arduino, self).__init__(*args, **kwargs) 20 21 def __str__(self): ~\Anaconda3\lib\site-packages\pyfirmata\pyfirmata.py in __init__(self, port, layout, baudrate, name, timeout) 105 # Iterate over the first messages to get firmware data 106 while self.bytes_available(): --> 107 self.iterate() 108 # TODO Test whether we got a firmware name and version, otherwise there 109 # probably isn't any Firmata installed ~\Anaconda3\lib\site-packages\pyfirmata\pyfirmata.py in iterate(self) 280 received_data.append(data & 0x0F) 281 while len(received_data) < handler.bytes_needed: --> 282 received_data.append(ord(self.sp.read())) 283 elif data == START_SYSEX: 284 data = ord(self.sp.read()) TypeError: ord() expected a character, but string of length 0 found And I checked I'm using the correct port (COM6), no other devices are using the same port. Anyone with the same issue? (running python 3 with UNO) Thanks a lot.
@apm5 жыл бұрын
Did you load the Standard Firmata on your board before running the Python script? It appears that the there is no response from the board.
@kit09255 жыл бұрын
Yes I did, and funny thing is,I found out that if I press the "RESET" button on the UNO board when the code is running this line: board = Arduino('COM6') IT WILL WORK!!!!…......for once it gave me the reading from the Arduino But when I run the code again directly, the error now changed to: SerialException: could not open port 'COM6': PermissionError(13, 'permission denied。', None, 5) I have to unplug the Arduino and reconnect in order to work again, but the above repeated.....I will have to press the "RESET" on the board for the code to successfully run "board = Arduino('COM6')"...
@apm5 жыл бұрын
@@kit0925 you can fix this error if you close the serial connection at the end of your script. Use board.exit()
@LinhNguyen-ym8yg6 жыл бұрын
Hi, is the pyfirmata compatible with any arduino board? I have a MCU Node e12 but I can only code in python.
@apm6 жыл бұрын
It should work but you may need to change your baud rate to 9600. Here is a relevant discussion thread: github.com/firmata/arduino/issues/338
@LinhNguyen-ym8yg6 жыл бұрын
Thank you so much
@ivanhernandez-kw6nr5 жыл бұрын
Hello! do you know how to control servos on pins 21-40 on arduino Mega with pyFirmata?
@apm5 жыл бұрын
Sorry, I don't have experience with the Mega.
@wongsuper14 жыл бұрын
haii may i ask how do you convert arduino code to python code?
@apm4 жыл бұрын
Arduino code is very similar to C. Maybe you could find some suggestions online to convert C to Python. However, the Python code won't run on the Arduino.
@copycarvers Жыл бұрын
I am using jupyter notebook and its not working for me
@apm Жыл бұрын
You probably installed the wrong package "serial". Try "pip uninstall serial" to remove the package and "pip install pyserial" to install the correct package. More details here: stackoverflow.com/questions/11403932/python-attributeerror-module-object-has-no-attribute-serial
@Kamil-kg2ku4 жыл бұрын
How do you download pyFirmata for Mac?
@apm4 жыл бұрын
It is the same on every platform (Windows, Mac, Linux): pip install pyFirmata Here is more information on the package: pypi.org/project/pyFirmata/ and more information on how to manage the packages: apmonitor.com/pdc/index.php/Main/InstallPython
@kleiman14 жыл бұрын
Thanks for the video !!!! it helped me so mutch. Now i'm looking for a way to send data from text file directly to the serial port (same port Arduino in connected to). Is it possible?
@apm4 жыл бұрын
Yes, check out the TCLab project that communicates over a serial USB connection. apmonitor.com/heat.htm See the source code links for Java, Python, and Matlab.
@jogithajohn56895 жыл бұрын
how to make pyfirmata work for python 3.6?
@apm5 жыл бұрын
You can do "pip install pyFirmata" at the command line: pypi.org/project/pyFirmata/ Here are additional details on managing packages: apmonitor.com/che263/index.php/Main/PythonIntroduction See section on "Install Packages with pip (Command Line)"
@Rahul2011ify5 жыл бұрын
try: from pyfirmata import Arduino, util except: from pip._internal import main main(['install','pyfirmata']) from pyfirmata import Arduino, util
@ahmedhesham79966 жыл бұрын
can you help me i need to send an number like '1234' as a password from a python code and receive it on arduino C code and i need to send back the temperature from arduino using sensor to use it in the python code
@apm6 жыл бұрын
Check out the TCLab project. We use a serial connection to communicate back and forth to an Arduino. The source code is at: github.com/jckantor/TCLab and apmonitor.com/pdc/index.php/Main/ArduinoTemperatureControl (see apmonitor.com/pdc/uploads/Main/tclab.zip for zipped archive with ino and python source). We send new heater values with a.Q1 and a.Q2 and read temperatures with a.T1 and a.T2.
@tayfun111002 жыл бұрын
Thank you, thank you, and thank you
@TomCrossSound4 жыл бұрын
is there a way to get this working on a pi?
@apm4 жыл бұрын
You can run Python directly on a Raspberry Pi because it runs Linux. If you want to interface the Raspberry Pi to an Arduino then here are some tips: raspberrypi-aa.github.io/session3/firmata.html
@KristijanPruzinac5 жыл бұрын
Hi does anyone know if and how I can change the baud rate for sending data?
Small problem, can't convert the pin reading into float. any ideas why?
@apm6 жыл бұрын
I'm not sure why that's not working. You may try to update the firmware on your Arduino. I'd also recommend that you check the value to see if it is NaN.
@doutormaia69232 жыл бұрын
Muito bom, meus parabéns. Ótima didática, ajudou bastante!!! It's amazing teacher, I sincerely appreciate it.
@jiteshchawla89174 жыл бұрын
How we can use relay board with arduino and python
@apm4 жыл бұрын
You can control a relay module with one of your Digital Output pins. You shouldn't use PWM unless you are using a BJT or MOSFET NPN transistor for the switch ON/OFF. PWM uses cycling at a high rate (like 500 Hz) to give a fractional output. This will wear out the relay module switch.
@jiteshchawla89174 жыл бұрын
@@apm can you make a tutorial on it or any article related to it. It will be very beneficial.actually i am making a home assistant. I have almost controlled computer now i am left with lights so i need the suggestion how i can do it. There is only one light in my room
@teamtrebirth49983 жыл бұрын
how to install pyfirmata?
@apm3 жыл бұрын
Try installing with pip: pip install pyfirmata Here are more details on package management in Python apmonitor.com/pds/index.php/Main/InstallPythonPackages
@yongchuan22524 жыл бұрын
Good afternoon sir, currently I am in school holiday so I would like to self-learning some idea for Arduino. My planning is to connect GUI, control system and database together. My GUI is written in python (currently using jupyter notebook), control system should be Arduino (just wanted to learn Arduino as it is suitable for many project), database is planned to be linked with GUI (watched video from youtube or did I need to create a new database in other method?). I think it would be good to simulate first before I purchase component. But currently I am facing some difficulty on how to connect the written GUI to simulation software. Any simulation software suggested? (hopefully simulation have following specs 1. Have Arduino and Arduino IDE (since I currently I haven’t buy one) Allow to create new component (like if I wanted to have more sensor but the sensor that I wanted didn’t include inside so I can create myself 3. Can connect to my GUI (or it is more preferable that I not to use jupyter notebook?)
@apm4 жыл бұрын
Here is a related project that may give you ideas.
@ermano976 жыл бұрын
Is it compatible with Arduino Duemilanove?
@apm6 жыл бұрын
I don't have that hardware but a quick search online showed that the duemilanove should be able to load the standard firmata. With the standard firmata I believe it should work with pyfirmata.
@cheesepuddin12663 жыл бұрын
"Arduino is not defined" is all I get from this
@apm3 жыл бұрын
There is a new way to pip install from a Python script. Try this instead: from pip._internal import main as pipmain pipmain(['install','pyfirmata']) The rest of it is the same. Then when you import Arduino, it should work. Here are other instructions on how to install Python packages: kzbin.info/www/bejne/kJCuqZpjer6prq8
@adhy6120001512 күн бұрын
thank you good man!
@haneen37313 жыл бұрын
Thanks for this video!
@rverm10004 жыл бұрын
Wow that was so helpful
@rvnreddy39294 жыл бұрын
great tutotial
@artigeniusStore3 жыл бұрын
thank you
@betov753 жыл бұрын
Thanks!
@harishhanchinal28385 жыл бұрын
Thank you.
@ariquciha585 жыл бұрын
With all the various backgrounds, this guy uses a blue screen!
@apm5 жыл бұрын
Even my work desk is very clean.
@DavidAmmerlaan6 жыл бұрын
SeemsGood
@karacaveli48114 жыл бұрын
Cool cool cooool realy cool
@deekshithp73035 жыл бұрын
can you give source code
@apm5 жыл бұрын
Yes, it is available here: apmonitor.com/pdc/index.php/Main/ProcessControlProject
@EternalScienceAndTech4 ай бұрын
Great teachings But too long
@floodbot9743 жыл бұрын
what the fuck is this pruduction quality?
@choudino59394 жыл бұрын
Useless vid
@apm4 жыл бұрын
Thanks for the feedback. Anything specific that you were looking for?
@choudino59394 жыл бұрын
@@apm i want to know how use open cv with arduino to track objects
@apm4 жыл бұрын
@@choudino5939 here is another resource that may help: www.instructables.com/id/Face-detection-and-tracking-with-Arduino-and-OpenC/
@choudino59394 жыл бұрын
@@apm thnx tooo much
@yusufmirzaozdemir37706 жыл бұрын
hi i am student from turkey please speak turkish
@apm6 жыл бұрын
Wow - that is the first time someone has requested that I speak in a different language. I believe that KZbin has subtitles and may offer translation.
@mikeshane20486 жыл бұрын
Spend some of your spare time to learn English instead, it'll be useful for programming too and you are funny :D
@alexandremarcotte73686 жыл бұрын
hi i am a guy from Quebec Parles Français svp
@__ryu40886 жыл бұрын
hi i am student from germany bitte rede deutsch
@Omaralejandroli4 жыл бұрын
Hi, I'm a student from Mexico por favor habla español, estudiante turco jajaja