Search found 6 matches
- Thu Nov 28, 2013 10:45 am
- Forum: Troubleshooting
- Topic: Problem Streaming video
- Replies: 10
- Views: 3041
Re: Problem Streaming video
Hai I had problem while streaming a mp4 video.I have copied a video in home/pi and created a folder video and copied mp4 video. Now my target is to play that mp4 video using vlc media in my pc.I have done my pi as hotspot i have connected wifi to my pc and i have done streaming in pi and opened a vl...
- Wed Oct 23, 2013 5:57 am
- Forum: Interfacing (DSI, CSI, I2C, etc.)
- Topic: UART
- Replies: 22
- Views: 20673
Re: UART
please help me how to work with uart in raspberry pi....
please provide some projects or some links regarding uart in raspberry pi...........by using python scripting
please provide some projects or some links regarding uart in raspberry pi...........by using python scripting
- Sat Oct 19, 2013 4:07 am
- Forum: Beginners
- Topic: syntax error in getting input
- Replies: 6
- Views: 5842
Re: syntax error in getting input
i am facing an error in 17 line this syntax error is if GPIO.input(8) please help me # Import the required modules. import RPi.GPIO as GPIO import time # Set the numbering sequence of the pins, then set pins ten and twelve to output, and pin eight to input. GPIO.setmode(GPIO.BOARD) GPIO.setup(10, GP...
- Fri Oct 18, 2013 12:35 pm
- Forum: General programming discussion
- Topic: nodeJS & GPIO Error?
- Replies: 5
- Views: 8199
Re: nodeJS & GPIO Error?
i am facing an error in 17 line this syntax error is if GPIO.input(8) please help me # Import the required modules. import RPi.GPIO as GPIO import time # Set the numbering sequence of the pins, then set pins ten and twelve to output, and pin eight to input. GPIO.setmode(GPIO.BOARD) GPIO.setup(10, GP...
- Fri Oct 18, 2013 9:44 am
- Forum: Python
- Topic: GPIO.setmode(GPIO.BCM) error
- Replies: 21
- Views: 13523
Re: GPIO.setmode(GPIO.BCM) error
who get's error of Traceback (most recent call last):
File "vijay.py", line 2, in <module>
GPIO.setmode(gpio.BCM)
NameError: name 'gpio' is not defined
just try with this GPIO.setmode(GPIO.BOARD)
instead of GPIO.setmode(GPIO.BCM)
File "vijay.py", line 2, in <module>
GPIO.setmode(gpio.BCM)
NameError: name 'gpio' is not defined
just try with this GPIO.setmode(GPIO.BOARD)
instead of GPIO.setmode(GPIO.BCM)
- Fri Oct 18, 2013 9:27 am
- Forum: Python
- Topic: GPIO.setmode(GPIO.BCM) error
- Replies: 21
- Views: 13523
Re: GPIO.setmode(GPIO.BCM) error
i am facing the same error can any help me this is my code import RPi.GPIO as GPIO GPIO.setmode(gpio.BCM) GPIO.setup(7,GPIO.IN) GPIO.setup(8,GPIO.OUT) input_value=GPIO.input(7) GPIO.output(8,True) while executing the code i am getting the error as Traceback (most recent call last): File "vijay....