Raspberry Pi 电路图模拟器

Circuit Diagram / Circuit Graph

https://fritzing.org/learning/tutorials/building-circuit

电路原理图绘制

PCB 布线软件

https://techclass.rohm.com.cn/knowledge/deviceplus/connect/integrate-rfid-module-raspberry-pi

Fritzing

not free, build for yourself

Fritzing is an open-source hardware initiative that makes electronics accessible as a creative material for anyone.

Fritzing是一项开放源代码的硬件计划,该计划使电子产品可以作为任何人的创意材料来使用。

https://fritzing.org/

https://fritzing.org/learning/

https://github.com/fritzing

Raspberry Pi 接线模拟器

面包板模拟器

接线模拟器

Sense HAT Emulator

Sense HAT 模拟器

https://trinket.io/sense-hat

https://trinket.io/docs/python

https://www.raspberrypi.org/blog/sense-hat-emulator/

https://www.raspberrypi.org/blog/desktop-sense-hat-emulator/

from sense_hat import SenseHat

sense = SenseHat()
red = (255, 0, 0)
sense.show_message("How cool is this?", text_colour = red)

Sense HAT

The Sense HAT is an add-on board for Raspberry Pi, made especially for the Astro Pi mission

Sense HAT是Raspberry Pi的附加板,专为Astro Pi任务而制造

LED

#!/usr/bin/env python3

# coding: utf8

__author__ = 'xgqfrms'
__editor__ = 'vscode'
__version__ = '1.0.1'
__copyright__ = """
Copyright (c) 2012-2050, xgqfrms; mailto:xgqfrms@xgqfrms.xyz
""" """
/**
*
* @author xgqfrms
* @license MIT
* @copyright xgqfrms
* @created 2020-08-0
*
* @description
* @augments
* @example
* @link https://www.youtube.com/watch?v=KNsqlqBrkuY
*
*/
""" import RPI.GPIO as gpio
import time gpio.setmode(gpio.BCM)
gpio.setup(17, gpio.OUT) while True:
gpio.output(17, gpio.HIGH)
time.sleep(1)
gpio.output(17, gpio.LOW)
time.sleep(1) """ from RPI.GPIO import setmode, setup, output, BCM, OUT, HIGH, LOW
from time import sleep setmode(BCM)
setup(17, OUT) while True:
output(17, HIGH)
sleep(1)
output(17, LOW)
sleep(1) """
#!/usr/bin/env python3

# coding: utf8

__author__ = 'xgqfrms'
__editor__ = 'vscode'
__version__ = '1.0.1'
__copyright__ = """
Copyright (c) 2012-2050, xgqfrms; mailto:xgqfrms@xgqfrms.xyz
""" """
/**
*
* @author xgqfrms
* @license MIT
* @copyright xgqfrms
* @created 2020-08-0
*
* @description
* @augments
* @example
* @link https://www.youtube.com/watch?v=lyura1g0QgY
*
*/
""" from gpiozero import LED
from time import sleep red = LED(12)
# Change 12 to your GPIO pin red.on()
sleep(3)
red.off()

https://www.youtube.com/watch?v=lyura1g0QgY

refs

https://techclass.rohm.com.cn/knowledge/deviceplus/how-tos/raspberry/how-to-run-arduino-sketches-on-raspberry-pi/3

chmod 777

https://zzk.cnblogs.com/my/s/blogpost-p?Keywords=chmod



xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


Raspberry Pi 电路图模拟器的更多相关文章

  1. 微软提供的 Web 版 Raspberry Pi 模拟器

    https://docs.microsoft.com/en-gb/azure/iot-hub/iot-hub-raspberry-pi-web-simulator-get-started#overvi ...

  2. raspberry pi 4b 常见的一些配置信息

    实验记录地址 https://gitee.com/dhclly/icepi.raspberry-pi 针脚图 面包板 gnd & vcc VCC:电路的供电电压: GND:指板子里面总的地线. ...

  3. Raspberry Pi & GPIO

    Raspberry Pi & GPIO pinout === pin out / p in out pi@raspberrypi:~ $ pinout ,------------------- ...

  4. 让Mono 4在Raspberry Pi上飞

    最近公司有项目想要在树莓派上做,代替原来的工控机(我们是把工控主机当作小的主机用,一台小的工控主机最少也要600左右,而树莓派只要200多).于是,公司买了一个Raspberry Pi B+和一个Ra ...

  5. Kali v2.1.2 for Raspberry Pi 3B

    最新的下载地址是: https://www.offensive-security.com/kali-linux-arm-images/ 按照官网的说法是找不到树莓派版本的SHA1SUM和SHA1SUM ...

  6. A new comer playing with Raspberry Pi 3B

    there are some things to do for raspberry pi 3b for the first time: 1, connect pi with monitor/KB/mo ...

  7. Windows Iot:让Raspberry Pi跑起来(1)

    首先请大家原谅我的"不务正业",放着RabbitHub不写,各种系列的文章不写搞什么Iot,哈哈,最近心血来潮想搞个速度极快的遥控车玩,望着在角落的Raspberry Pi恶狠狠的 ...

  8. 【转】【Raspberry Pi】Unix NetWork Programming:配置unp.h头文件环境

    一.初衷 近期正在做网络计算编程的作业.要求平台为unix/linux,想着Raspberry Pi装的Debian系统也是Linux改的,也应该能够勉强用着,所以就用它来做作业了! 二.说明 先把环 ...

  9. 【Raspberry Pi】新入手的Raspberry Pi3拼装日志

    一.概述 2016年暑假某宝入手Raspberry Pi 3,装机清单: 树莓派主板 亚克力外壳 小风扇 散热片 30G SD card 螺丝若干颗 因机型问题,可能与你的机器有微小差异 二.装机过程 ...

随机推荐

  1. flutter--Dart基础语法(一)

    一.前言 Flutter 是 Google 开源的 UI 工具包,帮助开发者通过一套代码库高效构建多平台精美应用,Flutter 开源.免费,拥有宽松的开源协议,支持移动.Web.桌面和嵌入式平台. ...

  2. 面向对象编程(封装、封装的意义、封装与扩展性、@property)

    1.封装之如何实现属性的隐藏 封装: __x=1 # 把数据属性隐藏 (如何实现隐藏) 类定义阶段 __开头发生了变形 __x --> _A__x特点: 1.在类外部无法直接:obj.__Att ...

  3. git submodule添加、更新和删除

    添加 git submodule add <url> <path> url:替换为自己要引入的子模块仓库地址 path:要存放的本地路径 执行添加命令成功后,可以在当前路径中看 ...

  4. jvm学习第一天

    视频教程链接 第一部分-jvm初识 0.jvm概览图 JVM由三个主要的子系统构成 类加载子系统 运行时数据区(内存结构) 执行引擎运行时数据区(内存结构) 1.什么是jvm 定义: ①. JVM 是 ...

  5. CSS奇思妙想 -- 使用 background 创造各种美妙的背景

    本文属于 CSS 绘图技巧其中一篇,系列文章: 在 CSS 中使用三角函数绘制曲线图形及展示动画 CSS奇思妙想 -- 使用 CSS 创造艺术 将介绍一些利用 CSS 中的 background.mi ...

  6. P1908 逆序对——树状数组&离散化&快读快写の学习

    题目简述: 对于给定的一段正整数序列,逆序对就是序列中 a_i>a_jai​>aj​ 且 i<ji<j 的有序对. 输出序列中逆序对的数目. 知识补充: 树状数组: 这东西就是 ...

  7. 2017-2018 ACM-ICPC Latin American Regional Programming Contest PART (11/13)

    $$2017-2018\ ACM-ICPC\ Latin\ American\ Regional\ Programming\ Contest$$ \(A.Arranging\ tiles\) \(B. ...

  8. Codeforces Round #655 (Div. 2) C. Omkar and Baseball

    题目链接:https://codeforces.com/contest/1372/problem/C 题意 给出一个大小为 $n$ 的排列,每次操作可以选取一个连续子数组任意排列其中的元素,要求每个元 ...

  9. zjnu1726 STOGOVI (lca)

    Description Mirko is playing with stacks. In the beginning of the game, he has an empty stack denote ...

  10. c语言实现--不带头结点的单链表操作

    1,不带头结点的单链表操作中,除了InitList(),GetElem(),ListInsert(),ListDelete()操作与带头结点的单链表有差别外,其它的操作基本上一样. 2,不带头结点单链 ...