Пожалуйста, найдите рабочее решение ниже.
Это скриншот блоков, которые я использовал:
введите описание изображения здесь
Я получил следующий код Python v3.7 для работы на Debian Linux с микробитовой прошивкой v 253. Поскольку порт, на котором монтируется микробит, может меняться при каждом подключении , Я написал метод find_comport для идентификации порта с использованием VID и PID бита micro :. Stock_Web.py не был изменен из вашего примера кода. Я вижу, например, 0,1% прокрутки светодиодов.
import logging
import serial
import serial.tools.list_ports as list_ports
import Stock_Web as SW
import time
logging.basicConfig(level=logging.DEBUG, format='%(message)s')
PID_MICROBIT = 516
VID_MICROBIT = 3368
TIMEOUT = 0.1
def find_comport(pid, vid, baud):
''' return a serial port '''
ser_port = serial.Serial(timeout=TIMEOUT)
ser_port.baudrate = baud
ports = list(list_ports.comports())
print('scanning ports')
for p in ports:
logging.debug('port: {}'.format(p))
try:
logging.debug('pid: {} vid: {}'.format(p.pid, p.vid))
except AttributeError:
continue
if (p.pid == pid) and (p.vid == vid):
logging.info('found target device pid: {} vid: {} port: {}'.format(
p.pid, p.vid, p.device))
ser_port.port = str(p.device)
return ser_port
return None
i=0
logging.debug('looking for microbit')
ser_micro = find_comport(PID_MICROBIT, VID_MICROBIT, 115200)
if not ser_micro:
logging.info('microbit not found')
logging.debug('opening and monitoring microbit port')
ser_micro.open()
while True:
i += 1
print
logging.debug('this is time {}'.format(i))
DowPerBytes = str(SW.DowPercent())
logging.debug('{}'.format(DowPerBytes))
DowPerBytes = DowPerBytes.encode()
logging.debug('{}'.format(DowPerBytes))
ser_micro.write(DowPerBytes)
time.sleep(5)
вывод на экран:
looking for microbit
scanning ports
port: /dev/ttyACM3 - "BBC micro:bit CMSIS-DAP" - mbed Serial Port
pid: 516 vid: 3368
found target device pid: 516 vid: 3368 port: /dev/ttyACM3
opening and monitoring microbit port
this is time 1
Starting new HTTPS connection (1): money.cnn.com:443
https://money.cnn.com:443 "GET /data/markets/ HTTP/1.1" 200 29158
0.10%
b'0.10%'
this is time 2
Starting new HTTPS connection (1): money.cnn.com:443
https://money.cnn.com:443 "GET /data/markets/ HTTP/1.1" 200 29158
0.10%
b'0.10%'
this is time 3