Source code for grove.grove_rotary_angle_sensor

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# The MIT License (MIT)
#
# Grove Base Hat for the Raspberry Pi, used to connect grove sensors.
# Copyright (C) 2018  Seeed Technology Co.,Ltd.
'''
This is the code for
    - `Grove - Rotary Angle Sensor(P) <https://www.seeedstudio.com/Grove-Rotary-Angle-Sensor(P)-p-1242.html>`_

Examples:

    .. code-block:: python

        import time
        from grove.grove_rotary_angle_sensor import GroveRotaryAngleSensor

        # connect to alalog pin 2(slot A2)
        PIN = 2

        sensor = GroveRotaryAngleSensor(PIN)

        while True:
            print('Rotary Value: {}'.format(sensor.value))
            time.sleep(.2)

'''
import math
import time
from grove.adc import ADC

__all__ = ["GroveRotaryAngleSensor"]

[docs] class GroveRotaryAngleSensor(ADC): ''' Grove Rotary Angle Sensor class Args: pin(int): number of analog pin/channel the sensor connected. ''' def __init__(self, channel): self.channel = channel self.adc = ADC() @property def value(self): ''' Get the rotary angle value, max angle is 100.0% Returns: (int): ratio, 0(0.0%) - 1000(100.0%) ''' return self.adc.read(self.channel)
Grove = GroveRotaryAngleSensor def main(): from grove.helper import SlotHelper sh = SlotHelper(SlotHelper.ADC) pin = sh.argv2pin() sensor = GroveRotaryAngleSensor(pin) while True: print('Rotary Value: {}'.format(sensor.value)) time.sleep(.2) if __name__ == '__main__': main()