Li.Qingwang

I am that I am.

学贵有恒 驽马奋蹄


你好,我是小我,搞电的。

Markdown 语法说明

目录

超链接

[首页](https://qingwang.li)

<https://qingwang.li>

首页

https://qingwang.li

列表

1. 有序列表项 1

2. 有序列表项 2

3. 有序列表项 3
  1. 有序列表项 1

  2. 有序列表项 2

  3. 有序列表项 3

* 无序列表项 1

* 无序列表项 2

* 无序列表项 3
  • 无序列表项 1

  • 无序列表项 2

  • 无序列表项 3

  • 任务列表 1
  • 任务列表 2

强调

~~删除线~~

**加黑**

*斜体*

删除线

加黑

斜体

标题

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

Tips: # 与标题中间要加空格。

表格

| HEADER1 | HEADER2 | HEADER3 | HEADER4 |
| ------- | :------ | :-----: | ------: |
| content | content | content | content |
HEADER1 HEADER2 HEADER3 HEADER4
content content content content
  1. :—– 表示左对齐
  2. :—-: 表示中对齐
  3. —–: 表示右对齐

代码块

print 'Hello, World!'
  1. list item1

  2. list item2

    print 'hello'
    

图片

![本站favicon](/favicon.ico)

本站favicon

锚点

* [目录](#目录)

Emoji

:camel: :blush: :smile:

Footnotes

This is a text with footnote1.

mermaid

sequenceDiagram Alice-->>John: Hello John, how are you? John-->>Alice: Great!

sequence

Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!

flowchart

st=>start: Start
e=>end
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?
io=>inputoutput: catch something...

st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1

mathjax

When \((a \ne 0)\), there are two solutions to \((ax^2 + bx + c = 0)\) and they are

\[x = {-b \pm \sqrt{b^2-4ac} \over 2a}.\]
  1. Here is the footnote 1 definition. 

最近的文章

CANopenNode学习(1)

学习 CANopenNode 的最终目的是:结合其 API 在 PIC18F 单片机上开发 CANopen 通信节点,并采集、传递和处理信号。英语及专业水平有限,如有纰漏和表达不周,请及时与我联系,谢谢。文中使用的 CANopenNode V1.1 源码和文件可以在 这里下载 新的工程已经转移到 GitHub 可以支持 PIC32 等更多的 MCU。由于 v1.1 版本涵盖了 PIC18F 的实例和工程文件,并有详细的手册和使用指南,所以选择 v1.1 版本作为入门学习。下面的章节主要...…

CANopen CANopenNode 学习 代码继续阅读