|
| 1 | +#!/usr/bin/env python2 |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | +# |
| 4 | +# fake_serial.py |
| 5 | +# |
| 6 | +# Copyright 2016 Giorgio Gilestro <giorgio@gilest.ro> |
| 7 | +# |
| 8 | +# This program is free software; you can redistribute it and/or modify |
| 9 | +# it under the terms of the GNU General Public License as published by |
| 10 | +# the Free Software Foundation; either version 2 of the License, or |
| 11 | +# (at your option) any later version. |
| 12 | +# |
| 13 | +# This program is distributed in the hope that it will be useful, |
| 14 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | +# GNU General Public License for more details. |
| 17 | +# |
| 18 | +# You should have received a copy of the GNU General Public License |
| 19 | +# along with this program; if not, write to the Free Software |
| 20 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 21 | +# MA 02110-1301, USA. |
| 22 | +# |
| 23 | +# |
| 24 | + |
| 25 | +import serial |
| 26 | +import time, random |
| 27 | + |
| 28 | +""" |
| 29 | +This is used for debugging |
| 30 | +Start two serial ports with the command |
| 31 | +socat -d -d pty,raw,echo=0 pty,raw,echo=0 |
| 32 | +then assign one here and one to the server |
| 33 | +""" |
| 34 | + |
| 35 | +port = "/dev/pts/3" |
| 36 | +ser=serial.Serial(port, 115200) |
| 37 | +filename = "/home/gg/smart_incubator.csv" |
| 38 | + |
| 39 | +def random_values(): |
| 40 | + """ |
| 41 | + creates random values |
| 42 | + """ |
| 43 | + pause = 10 |
| 44 | + counter = 0 |
| 45 | + while True: |
| 46 | + |
| 47 | + counter +=1 |
| 48 | + line = " ".join([str(i) for i in [random.randint(0,10), "R", counter, time.time(), random.uniform(18,26), random.uniform(58,67), random.randint(0, 1000), 23.0, 62.0, 100, 32400, 75600, 0]]) |
| 49 | + ser.write(line+"\r\n") |
| 50 | + time.sleep(pause) |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | +def transfer_file(filename,verbose=False): |
| 55 | + """ |
| 56 | + transfer CSV content to mySQL |
| 57 | + """ |
| 58 | + DD_MODE_MAP = ["DD","LD", "LL", "DL", "MM"] |
| 59 | + lines_to_transfer = 1440*7*5 |
| 60 | + |
| 61 | + with open(filename, "r") as fh: |
| 62 | + for line in fh.readlines()[-lines_to_transfer:]: |
| 63 | + id, command, counter, device_time, server_time, temperature, humidity, light, set_temp, set_hum, set_light, lights_on, lights_off, dd_mode = line.strip().split(",") |
| 64 | + dd_mode = DD_MODE_MAP.index(dd_mode) |
| 65 | + |
| 66 | + lineout = " ".join([str(a) for a in [id, command, counter, device_time, temperature, humidity, light, set_temp, set_hum, set_light, lights_on, lights_off, dd_mode ]]) |
| 67 | + ser.write(lineout+"\r\n") |
| 68 | + if verbose: print lineout |
| 69 | + |
| 70 | + |
| 71 | +#transfer_file(filename) |
| 72 | +random_values() |
0 commit comments