TB-01 开发板资料

社区整理的参考资料、设计资源
回复
头像
shaoziyang
帖子: 3917
注册时间: 2019年 10月 21日 13:48

TB-01 开发板资料

#1

帖子 shaoziyang »

TB-01是一个类似ESP8266的Wifi开发板。

图片


引脚图

图片


原理图
图片



开发板资料
https://github.com/w600/tb-01-devkit

W600文档
https://docs.w600.fun/?p=product/tb-01.md

串口调试下载助手
https://download.w600.fun/tool/ThingsTu ... al_Tool.7z

micropython固件
https://github.com/robert-hh/Shared-Stu ... m_w600.fls

注:
  • 因为TB-01将RESET通过电阻R4连接到RTS信号,造成大部分终端软件不能使用(标准串口软件会在打开串口时将RTS设置为高)。改进方法是用一个2.2u的电容替换R4。替换后不影响ThingsTurn_Serial_Tool软件的功能,可以正常升级固件。
 

头像
shaoziyang
帖子: 3917
注册时间: 2019年 10月 21日 13:48

Re: TB-01 开发板资料

#2

帖子 shaoziyang »

LED demo

代码: 全选

from machine import Pin
from time import sleep_ms

LED=[Pin(i, Pin.OUT, value=1) for i in range(30,35)]
cnt = 0

while True:
    LED[cnt](0)
    sleep_ms(200)
    LED[cnt](1)
    cnt = (cnt + 1)%5
 

头像
shaoziyang
帖子: 3917
注册时间: 2019年 10月 21日 13:48

Re: TB-01 开发板资料

#3

帖子 shaoziyang »

内置了 ls、cat、cd等常用命令,使用比较方便

代码: 全选

>>> ls
   <dir> lib
       6 a
     139 boot.py
      34 main.py

29k free

>>> cat('main.py')
# main.py -- put your code here!
>>> cat('boot.py')
# boot.py -- run on boot-up
# can run arbitrary Python, but best to keep it minimal
print("")
print("    WinnerMicro W600")
print("")
>>> dir()
['pwd', 'sys', 'os', 'w', '__name__', 'mkdir', 'man', 'Man', 'rm', 'head', 'ls', 'network', 'cat', 'gc', 'PWD', 'hd', 'pye', 'mv', 'rmdir', 'LS', 'clear', 'newfile', 'cd', 'CLEAR']
>>>
 
 

回复

  • 随机主题
    回复总数
    阅读次数
    最新文章