Have you read the data sheet for it, the link is in one of the answered questions on banggood . “ MPU-60X0 collects gyroscope and accelerometer data while synchronizing data sampling at a user defined rate.” It uses I2C or SPI interface to the raspberry pi. yes I have been read but I didn't underst...
I need help to understand model given the link https://www.banggood.in/6DOF-MPU-6050-3-Axis-Gyro-With-Accelerometer-Sensor-Module-p-80862.html? akmClientCountry=IN&akmClientCountry=IN&utm_source=youtube&utm_medium=liangzhenhua&utm_campaign=MertArduino&utm_content=liangzhenhua&cur_warehouse=CN This i...
Since, from the nature of the questions, I assume this is for a class, your instructor should be the one to tell you what is intended to be between the routers, or else you should have taken a networking course before this one. I asked this question to clear my doubt I am planning to take networkin...
I need your help to understand the project I have shown in below diagram what is being processed. Tempr.jpg 1. thermocouple 2. Raspberry pi 3 running test.py program 3. ADC 4. PC running MS SQL server sensor sense the temperature and sends its output to ADC and output of ADC will goes to at input pi...
For both Question Marks in your summary the answer is The Internet Protocol. You thrown me back to first question http://ecomputernotes.com/computernetworkingnotes/computer-network/protocol Types of internet protocols • TCP/IP (Transmission Control Protocol/Internet Protocol) • ARP (Address Resolut...
I found that Pi act like client that send data to PC running MS SQL server via TCP/IP My understanding that if two devices are communicating they must follow the some rule of logic called as protocols ADC to PI via I2C Pi to Router via ? Router to PC via ? wifi router only use to connect two or more...
Hi Program read the data from sensor via ADC and Pi send it to database. There is one I2C protocols that communicate between PI and ADC. Pi sending data to another PC via wifi router with internet connection. I don't understand which type of protocol being used in program when PI talk to other devic...
I want keep the record of temperature. I have DHT22 sensor is connected to Raspberry Pi3 Raspberry Pi should push data to cloud to an IoT service, Fansoluation.com and to a mobile App (Fan)
I have done some research work and found it can be done via MQTT protocol. would it work ?
The 5V output is only 1.5A which may not be enough depending on what else is connected to the RPi. Thanks to all of you load 24V DC Fan http://shop.rabtron.co.za/catalog/80x80x25-p-137.html I don't want to damage raspberry Pi and other devices as shown in the image, Is it a safe connection?
I have the following components and trying to connect all each other Raspberry Pi 3 SSR https://www.indiamart.com/proddetail/5amp-model-704-dc-to-dc-mosfet-ssr-20061643930.html SMPS https://www.amazon.in/Shavison-SMPS-Dual-output-G31-70-24-05/dp/B01MXZDXTN i am afraid from 24v dc smps, need help for...
Change your create_entries function Hi DougieLawson thank you very much I can show IP, I have modified code to get host name but I am not getting host name what's the wrong in my code import tkinter as tk from urllib.request import urlopen import json import socket class MainApplication(tk.Frame): ...
This TKinter program shows your LAN and public IP addresses. #!/usr/bin/python3 from urllib.request import urlopen import json import socket from tkinter import * rootWindow = Tk() rootWindow.title('IP Addresses') localIP = Label(rootWindow, font = ('fixed', 20),) localIP.grid(sticky = N, row = 2, ...
The relay you show has a 5V coil. You cannot (easily) use that to monitor a 24V supply. The relay contacts (output, to Pi) are on the blue terminal block. NC and NO are labelled, the third will be COM. I can't read the labels on the pin connector for the coil (input) side. There are three signals (...
Your code is written to look for a falling edge but your relay is wired with a pull down on the gpio pin. so you have 2 choices change you code to GPIO.add_event_detect(channel, GPIO.RISING) . I have modified my code from time import sleep import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) ...
What may be wrong from time import sleep import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) GPIO.setup(16, GPIO.IN) def callback1(channel): print("interrupt detected") GPIO.add_event_detect(16, GPIO.FALLING, callback=callback1, bouncetime=2500 ) if I sort pin 16 it give interrupt detected I ...
I have been tried to run the example project for pi camera but I couldn't get success I tried in this thread https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=228108&p=1399332#p1399332 but here program is not working anyone have a working program? I just want to test camera to scan barcode
Should be OK but you probably will want a pull down resistor on the GPIO pin 7. I think I can set pull-down resistor in program 1. Will work OK if the relay and RPi are not too far apart. Expect problems if they at opposite ends of the house. 2. Depending on what the RPi is destined to do with the ...
Any help would be appreciated I was searching on the forum looked this link https://www.raspberrypi.org/forums/viewtopic.php?t=222499 You can expose any data in Raspberry Pi you intended via a self-hosted web service written using C#. You can use WCF (Tcp binding only for Raspberry Pi) or Owin. Goog...
can anybody help to understand information in link https://code.i-harness.com/en/q/436d8 script from suds.client import Client print "Connecting to Service..." wsdl = "http://serviceurl.com/service.svc?WSDL" client = Client(wsdl) result = client.service.Method(variable1, variable2) print result
If you want something to happen (send an SMS) based on the GPIO pin, you'd need to add code to the "FAULTbuttonPressed" function which is called by the GPIO callback. You don't need an "if" when you are using the "add_event_detect" method of the GPIO library. At the moment your code just sends the ...
.(Not sure why would have two counts SensorHigh and TOTAL given that they are both updated at the same time...) When I run following program I am getting message on mobile #!/usr/bin/env python from tkinter import * import RPi.GPIO as GPIO import urllib.request import urllib.parse def sendSMS(apike...