英语学习笔记33——A fine day

A fine day 风和日丽

词汇 Vocabulary

day n. 日子,白天
复数:days
常见节日:Mothers’ Day 母亲节
     Fathers’ Day 父亲节
     Teachers’ Day 教师节
     Children’s Day 儿童节
     Women’s Day 妇女节

cloud n. 云(团)
可数名词:clouds
搭配:in cloud 成群的
   a piece of cloud 一朵云
例句:他们成群结队而来。
   They come in cloud.
   屋子里有一朵云。
   There is a piece of cloud in the room

sky n. 天空
复数形式:skies
搭配:in the sky 在天上
   sky bus
例句:天上有一只小鸟。
   There is a bird in the sky.
   天空是什么颜色的?
   What color is the sky?

sun n. 太阳
同音词:son
搭配:sun glasses 太阳镜,墨镜
有sun必有the
常用:the Sun 大阳
   the Moon 月亮
   the Earth 地球
   the Mars 火星
例句:天上有一个太阳。
   There is a sun in the sky.

shine v. 照耀
ing形式:shining
相关:sunshine n. 阳光
例句:你是我的阳光。
   You are my sunshine.
   太阳正在照耀。
   The sun is shining.

with prep. 和……在一起 表伴随

family n. 家庭(人)
FAMLIY = Father And Mother I Love You
区别:home n. 家
   house n. 房子
搭配:family tree 家谱
例句:我们是一家人。
   We are a family.

walk v. 走路,步行
ing形式:walking
相关:walkie-talkie 对讲机
例句:他们正在走路。
   They are walking.

over prep. 1. 跨越,从一边到另一边
     2. 在……上边(高)
   adv. 结束,了结
搭配:walk over 走过……
例句:我们全完了。
   We are all over.

bridge n. 桥,鼻梁
复数形式:bridges
相关:over bridge 天桥
例句:小河上有一座桥。
   There is a bridge over the river.

boat n. 小船
类似:ship n. 大船
例句:河上有一座小船。
   There is a small boat on the river.

river n. 河,江
黄河:Yellow River
长江:Changjiang River
搭配:on the river 在河里(船)
   in the river 在河里(鱼)
例句:我家旁边有一条小河。
   There is a river near my house.

plane n. 飞机
复数:planes
相关:jet n. 喷气式飞机
   helicopter n. 直升机

fly v. 飞 n. 苍蝇
复数形式:flies
相关:butterfly 蝴蝶(黄油 + 苍蝇)
   dragonfly(龙 + 苍蝇)
例句:鸟正在飞。
   The bird is flying.

课文部分

在这里插入图片描述

语言点

It’s a fine day today.
今天天气很好。
fine a. 好的(身体好,天气好)
例如:How are you? I am fine.
n. 罚款

There are some clouds in the sky.
天上有很多云彩。
在天上:我们用介词 in the sky
clouds:云彩是可数名词
there are + 可数名词复数 / 集合名词
例句:有一些鸟儿在天上。
   There are some birds in the sky.

But the sun is shining.
但是太阳正在照耀。
but:但是(连词)——转折
例句:他很矮,但是很聪明。
   He is short, but he’s very clever.
现在进行时动词变成ing:
shinsing 【e不发音】

Mr. Jones is with his family.
Jones先生和他的家人在一起。
with 表示伴随,但是并不是动词。
千万别忘加be动词,介词不能当动词用
例句:这只小狗和那只小猫在一起。
   This dog is with that cat.

They are walking over the bridge.
他们正在走路跨过大桥。
over:一侧到另一侧
例句:我们正在跑步跨过学校。
   We are running over our school.

There are some boats on the river.
河里有一些船。
on the river 在河里(船)
in the river 在河里(鱼)
例句:河里有一些男孩。
   There are some boys in the river.

They are looking at them.
他们正在看着他们。
look:不及物动词
后面不能直接 + 看到的东西,要加介词 at
look at + 东西 看……
搭配:Look at you! 看看你!
例句:孩子们正在看黑板。
   The children are looking at the blackboard.

The ship is going under the bridge.
这艘船正在桥下。
under the bridge 在桥下
例句:Bobby正在桥底下吃饭。
   Bobby is eating under the bridge.
The plane is flying over the bridge.
飞机正在桥上掠过小河。
over the bridge 高高在上
例句:一只鸟正在房子上飞过。
   A bird is flying over the house.

  • 29
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你好!感谢提问。下面是有关 K210 学习笔记五中串口通信的一些内容: 在 K210 开发板上,串口是一种常见的通信接口,用于将数据从一个设备传输到另一个设备。串口通信通常使用 UART (Universal Asynchronous Receiver/Transmitter) 协议。 要在 K210 上进行串口通信,首先需要使用两个引脚:一个用于接收数据(RX),一个用于发送数据(TX)。这些引脚可以通过 GPIO 端口与外部设备连接。 在 K210 的开发环境中,可以使用 MaixPy 或者 Kendryte Standalone SDK 进行串口编程。 在 MaixPy 中,可以使用 `uart` 模块来进行串口通信。例如,要初始化一个串口对象并设置波特率为 115200,可以使用以下代码: ```python from machine import UART uart = UART(UART.UART1, 115200) ``` 然后,可以使用 `uart.write()` 函数发送数据,使用 `uart.read()` 函数接收数据。例如: ```python uart.write("Hello, world!\n") data = uart.read(10) ``` 在 Kendryte Standalone SDK 中,可以使用 `uart.h` 头文件中的函数来进行串口通信。例如,要初始化一个串口对象并设置波特率为 115200,可以使用以下代码: ```c #include "uart.h" uart_init(UART_DEVICE_1, 115200); ``` 然后,可以使用 `uart_send_data()` 函数发送数据,使用 `uart_receive_data()` 函数接收数据。例如: ```c uart_send_data(UART_DEVICE_1, "Hello, world!\n", 14); char buffer[10]; uart_receive_data(UART_DEVICE_1, buffer, 10); ``` 以上是关于 K210 学习笔记五中串口通信的简要介绍。如果你有更具体的问题,请随时提问!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值