Python Forum
some help with reading line from CMD on PI
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
some help with reading line from CMD on PI
#5
this is what I'm tryting now

but I'm having problems
can you take a look , please?

import pexpect
import datetime
import time
child = pexpect.spawn("bluetoothctl")
child.send("scan on\n")
SendToServer = []

try:
    print("Scan Begin")
    while True:
        now = datetime.datetime.now()
        future = (now+ 10) #####--->this is not wroking##### 
        child.expect("Device (([0-9A-Fa-f]{2}:){5}([0-9A-Fa-f]{2})) RSSI: (-[0-9]{2})",timeout=None)
        bdaddr = child.match.group(1)
        bdrssi = child.match.group(4)
        DeviceInfo = ((bdaddr + b'!' + bdrssi))
        print(DeviceInfo)
        SendToServer.append(DeviceInfo)
        if now>future:#### --->this is also not working also obvious :-) #### 
            print("it's been 10 seconds" + now)
            ##cdoe for sending to server, need to write 
            print ("Old size is - " + len(SendToServer))
            SendToServer.clear()
            print ("Ne size need to be 0" + len(SendToServer))
            break    
                
except KeyboardInterrupt:
    child.close()


and also what do you mean be set()?

Thanks,
Reply


Messages In This Thread
RE: some help with reading line from CMD on PI - by korenron - May-21-2020, 08:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Reading and storing a line of output from pexpect child eagerissac 1 4,302 Feb-20-2024, 05:51 AM
Last Post: ayoshittu
  Reading in of line not working? garynewport 2 875 Sep-19-2023, 02:22 PM
Last Post: snippsat
  [Solved] Reading every nth line into a column from txt file Laplace12 7 5,274 Jun-29-2021, 09:17 AM
Last Post: Laplace12
  Ignore first few letters of a line when reading file. ShakeyPakey 16 6,525 May-30-2020, 02:17 PM
Last Post: BitPythoner
  EOFError: EOF when reading a line - Runtime Error RavCOder 6 9,712 Sep-27-2019, 12:22 PM
Last Post: RavCOder
  reading data from command line mcmxl22 2 2,010 Feb-17-2019, 09:01 PM
Last Post: Axel_Erfurt
  reading a line of a CSV Skaperen 2 2,263 Feb-10-2019, 08:10 PM
Last Post: Skaperen
  First line of File gets deleted when reading file lrxM 2 4,346 Dec-24-2016, 10:56 AM
Last Post: lrxM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020