Ejemplo n.º 1
0
 def __init__(self, port, pinmode):
     '''
     port = one of PORTS keys
     pinmode = "INPUT", "OUTPUT", "SERIAL" (which gets ignored)
     '''
     debug("Sensor init")
     debug(pinmode)
     self.setPort(port)
     self.setPinMode(pinmode)
     if pinmode == "INPUT" or pinmode == "OUTPUT":
         gopigo.pinMode(self.getPortID(), self.getPinMode())
Ejemplo n.º 2
0
 def __init__(self, port, pinmode):
     '''
     port = one of PORTS keys
     pinmode = "INPUT", "OUTPUT", "SERIAL" (which gets ignored)
     '''
     debug("Sensor init")
     debug(pinmode)
     self.setPort(port)
     self.setPinMode(pinmode)
     if pinmode == "INPUT" or pinmode == "OUTPUT":
         gopigo.pinMode(self.getPortID(), self.getPinMode())
Ejemplo n.º 3
0
 def __init__(self, port, pinmode, use_mutex=False):
     '''
     port = one of PORTS keys
     pinmode = "INPUT", "OUTPUT", "SERIAL" (which gets ignored), "SERVO"
     '''
     debug("Sensor init")
     debug(pinmode)
     self.setPort(port)
     self.setPinMode(pinmode)
     self.use_mutex = use_mutex
     if pinmode == "INPUT" or pinmode == "OUTPUT":
         try:
             gopigo.pinMode(self.getPortID(), self.getPinMode())
         except:
             pass
Ejemplo n.º 4
0
 def __init__(self, port, pinmode, use_mutex=False):
     '''
     port = one of PORTS keys
     pinmode = "INPUT", "OUTPUT", "SERIAL" (which gets ignored), "SERVO"
     '''
     debug("Sensor init")
     debug(pinmode)
     self.setPort(port)
     self.setPinMode(pinmode)
     self.use_mutex = use_mutex
     if pinmode == "INPUT" or pinmode == "OUTPUT":
         try:
             gopigo.pinMode(self.getPortID(), self.getPinMode())
         except:
             pass
Ejemplo n.º 5
0
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time

import gopigo

# Connect the analog sensor like the sound sensor, light sensor, rotatary sensor to  A1
#   The pin should be 15 for A11 port or you can call the analogPort definitions from the GoPiGo library
#   The analog sensors won't work on any other port

sensor_pin = gopigo.analogPort
gopigo.pinMode(sensor_pin, "INPUT")
while True:
	try:
		print (gopigo.analogRead(sensor_pin))
		time.sleep(.5)

	except IOError:
		print ("Error")
Ejemplo n.º 6
0
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time

import gopigo

# Connect the Grove LED to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The LED won't work on any other port

led_pin = gopigo.analogPort
# led_pin = gopigo.digitalPort

gopigo.pinMode(led_pin, "OUTPUT")

while True:
	try:
		print "1"
		gopigo.digitalWrite(led_pin, 1)
		time.sleep(.5)

		print "0"
		gopigo.digitalWrite(led_pin, 0)
		time.sleep(.5)

	except IOError:
		print ("Error")
Ejemplo n.º 7
0
 def _open(self):
     if not gopigo_available:
         return False
     gopigo.pinMode(self.pin, 'INPUT')
     return True
Ejemplo n.º 8
0
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the analog sensor like the sound sensor, light sensor, rotatary sensor to  A1
#   The pin should be 15 for A11 port or you can call the analogPort definitions from the GoPiGo library
#   The analog sensors won't work on any other port

sensor_pin = gopigo.analogPort
gopigo.pinMode(sensor_pin, "INPUT")
while True:
    try:
        print(gopigo.analogRead(sensor_pin))
        time.sleep(.5)

    except IOError:
        print("Error")
Ejemplo n.º 9
0
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the Grove Button to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The button won't work on any other port

# button_pin = gopigo.analogPort
button_pin = 11

gopigo.pinMode(button_pin,"INPUT")

while True:
    try:
        print (gopigo.digitalRead(button_pin))
        time.sleep(.5)

    except IOError:
        print ("Error")
Ejemplo n.º 10
0
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the Grove LED to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The LED won't work on any other port

led_pin = gopigo.analogPort
# led_pin = gopigo.digitalPort

gopigo.pinMode(led_pin, "OUTPUT")

while True:
    try:
        print "1"
        gopigo.digitalWrite(led_pin, 1)
        time.sleep(.5)

        print "0"
        gopigo.digitalWrite(led_pin, 0)
        time.sleep(.5)

    except IOError:
        print("Error")
Ejemplo n.º 11
0
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the Grove Button to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The button won't work on any other port

# button_pin = gopigo.analogPort
button_pin = 11

gopigo.pinMode(button_pin, "INPUT")

while True:
    try:
        print(gopigo.digitalRead(button_pin))
        time.sleep(.5)

    except IOError:
        print("Error")
Ejemplo n.º 12
0
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the Grove PIR motion sensor to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The sensor won't work on any other port

# motion_sensor_pin = gopigo.digitalPort
motion_sensor_pin = gopigo.analogPort

gopigo.pinMode(motion_sensor_pin,"INPUT")

while True:
    try:
        print (gopigo.digitalRead(motion_sensor_pin))
        time.sleep(.5)

    except IOError:
        print ("Error")
Ejemplo n.º 13
0
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''

import time
import gopigo

# Connect the Grove PIR motion sensor to digital port D10 or A1
#   The pin should be 15 for A11 port and 10 for the D10 digital port or you can call the analogPort or digitalPort definitions from the GoPiGo library
#   The sensor won't work on any other port

# motion_sensor_pin = gopigo.digitalPort
motion_sensor_pin = gopigo.analogPort

gopigo.pinMode(motion_sensor_pin, "INPUT")

while True:
    try:
        print(gopigo.digitalRead(motion_sensor_pin))
        time.sleep(.5)

    except IOError:
        print("Error")
Ejemplo n.º 14
0
 def _open(self):
     if not gopigo_available:
         return False
     gopigo.pinMode(self.pin, 'INPUT')
     return True
Ejemplo n.º 15
0
def pinMode(kargs):
    r = {'return_value': gopigo.pinMode(int(kargs['pin']), int(kargs['mode']))}
    return r