Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 635 Bytes

README.md

File metadata and controls

20 lines (19 loc) · 635 Bytes

sensors

Sensors, is a library to send datatime series from a device to a server over the network or saved them into the device.

Example. First define a function where the data is generated.

#!/usr/bin/python2.7
#This funtion return random numbers
def random_data():
    import random
    return random.uniform(0, 30)

Then, call a sync

if __name__ == '__main__':
    formater = CarbonFormat(SENSOR_NAME)
    sensor_sync = SyncData(SENSOR_NAME, CARBON_HOST, port=CARBON_PORT, formater=formater, delay=2, 
                            batch_size=10, delay_error_connection=10)
    sensor_sync.run(read_temp)