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. Before you launch a goroutine, know when it will stop The Zen of Go

    The Zen of Go https://the-zen-of-go.netlify.app/ Ten engineering values for writing simple, readable ...

  2. Git恢复之前版本的两种方法reset、revert

    实战 回退 1.删除之前的提交 git reset --hard id 推送到远程 git push -f [git log中确实删除了,但是拿到可以恢复] 2.不删除之前的提交 git revert ...

  3. 关于js中each()使用return不能终止循环

    Jquery的each里面用return false代替break:return ture代替continue $(xx).each(function() { if(xx){ return false ...

  4. web.xml 监听器

    一.作用 Listener就是在application,session,request三个对象创建.销毁或者往其中添加修改删除属性时自动执行代码的功能组件. Listener是Servlet的监听器, ...

  5. Spark使用Java、Scala 读取mysql、json、csv数据以及写入操作

    Spark使用Java读取mysql数据和保存数据到mysql 一.pom.xml 二.spark代码 2.1 Java方式 2.2 Scala方式 三.写入数据到mysql中 四.DataFrame ...

  6. nohup和&后台运行,进程查看及终止

    文章目录 一.nohup 1.1用途:不挂断地运行命令. 1.2语法:nohup Command [ Arg - ] [ & ] 1.3退出状态:该命令返回下列出口值: 二.& 2.1 ...

  7. TCP IP SOCKET 笔记

    网络由下往上分为 物理层.数据链路层.网络层.传输层.会话层.表示层和应用层. 通过初步的了解,我知道IP协议对应于网络层,TCP协议对应于传输层,而HTTP协议对应于应用层, 三者从本质上来说没有可 ...

  8. Spring boot 自定义注解标签记录系统访问日志

    package io.renren.common.annotation; import java.lang.annotation.Documented; import java.lang.annota ...

  9. 每个开发人员都应该知道的WebSockets知识

    转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具.解决方案和服务,赋能开发者. 原文出处:https://blog.bitsrc.io/deep-dive-into-websockets- ...

  10. UVA-12304 2D Geometry 110 in 1! (有关圆的基本操作)

    UVA-12304 2D Geometry 110 in 1! 该问题包含以下几个子问题 CircumscribedCircle x1 y1 x2 y2 x3 y3 : 三角形外接圆 Inscribe ...