mcp3208 和 树莓派3b板子的配置以及对应代码

2024-06-07 12:58

本文主要是介绍mcp3208 和 树莓派3b板子的配置以及对应代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

先上连接图。
在这里插入图片描述
MCP3208 在2013年一位日本大佬的代码:
https://seinzumtode.hatenadiary.jp/entry/20130918/1379501130
针对MQ-X这类气体模块,用MQ-2去做实验(这个模块是可燃气体,那个打火机就能看出程序里的读数变化)。所以MQ2的AO的小针就是对应MCP3208上面的CH0的。
最后 如果再修改的好一点的话,关于pot move的这类代码其实在气体模块这里是用不到的,然后volume的意义针对气体模块其实应该重新整理公式去换算。

import time
import os
import RPi.GPIO as GPIOGPIO.setmode(GPIO.BCM)
DEBUG = 1# read SPI data from MCP3208 chip, 8 possible adc's (0 thru 7)
def readadc(adcnum, clockpin, mosipin, misopin, cspin):if ((adcnum > 7) or (adcnum < 0)):return -1GPIO.output(cspin, True)GPIO.output(clockpin, False)  # start clock lowGPIO.output(cspin, False)     # bring CS lowcommandout = adcnumcommandout |= 0x18  # start bit + single-ended bitcommandout <<= 3    # we only need to send 5 bits herefor i in range(5):if (commandout & 0x80):GPIO.output(mosipin, True)else:GPIO.output(mosipin, False)commandout <<= 1GPIO.output(clockpin, True)GPIO.output(clockpin, False)adcout = 0# read in one empty bit, one null bit and 10 ADC bitsfor i in range(12):GPIO.output(clockpin, True)GPIO.output(clockpin, False)adcout <<= 1if (GPIO.input(misopin)):adcout |= 0x1GPIO.output(cspin, True)adcout >>= 1       # first bit is 'null' so drop itreturn adcout# change these as desired - they're the pins connected from the
# SPI port on the ADC to the Cobbler
#SPICLK = 18
#SPIMISO = 23
#SPIMOSI = 24
#SPICS = 25
# Above pin number seems not working. I modified the pin as below.
# See also: http://elinux.org/RPi_Low-level_peripherals
SPICLK = 11
SPIMISO = 9
SPIMOSI = 10
SPICS = 8# set up the SPI interface pins
GPIO.setup(SPIMOSI, GPIO.OUT)
GPIO.setup(SPIMISO, GPIO.IN)
GPIO.setup(SPICLK, GPIO.OUT)
GPIO.setup(SPICS, GPIO.OUT)# 10k trim pot connected to adc #0
potentiometer_adc = 0;last_read = 0       # this keeps track of the last potentiometer value
tolerance = 5       # to keep from being jittery we'll only change# volume when the pot has moved more than 5 'counts'while True:# we'll assume that the pot didn't movetrim_pot_changed = False# read the analog pintrim_pot = readadc(potentiometer_adc, SPICLK, SPIMOSI, SPIMISO, SPICS)# how much has it changed since the last read?pot_adjust = abs(trim_pot - last_read)if DEBUG:print "trim_pot:", trim_potprint "pot_adjust:", pot_adjustprint "last_read", last_readif ( pot_adjust > tolerance ):trim_pot_changed = Trueif DEBUG:print "trim_pot_changed", trim_pot_changedif ( trim_pot_changed ):# convert 12bit adc0 (0-4096) trim pot read into 0-100 volume levelset_volume = trim_pot / (10.24 * 4)set_volume = round(set_volume)          # round out decimal valueset_volume = int(set_volume)            # cast volume as integerprint 'Volume = {volume}%' .format(volume = set_volume)set_vol_cmd = 'sudo amixer cset numid=1 -- {volume}% > /dev/null' .format(volume = set_volume)os.system(set_vol_cmd)  # set volumeif DEBUG:print "set_volume", set_volumeprint "tri_pot_changed", set_volume# save the potentiometer reading for the next looplast_read = trim_pot# hang out and do nothing for a half secondtime.sleep(0.5)

这篇关于mcp3208 和 树莓派3b板子的配置以及对应代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1039242

相关文章

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

java之Objects.nonNull用法代码解读

《java之Objects.nonNull用法代码解读》:本文主要介绍java之Objects.nonNull用法代码,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录Java之Objects.nonwww.chinasem.cnNull用法代码Objects.nonN

springboot security之前后端分离配置方式

《springbootsecurity之前后端分离配置方式》:本文主要介绍springbootsecurity之前后端分离配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的... 目录前言自定义配置认证失败自定义处理登录相关接口匿名访问前置文章总结前言spring boot secu

一文详解SpringBoot响应压缩功能的配置与优化

《一文详解SpringBoot响应压缩功能的配置与优化》SpringBoot的响应压缩功能基于智能协商机制,需同时满足很多条件,本文主要为大家详细介绍了SpringBoot响应压缩功能的配置与优化,需... 目录一、核心工作机制1.1 自动协商触发条件1.2 压缩处理流程二、配置方案详解2.1 基础YAML

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

Spring Boot结成MyBatis-Plus最全配置指南

《SpringBoot结成MyBatis-Plus最全配置指南》本文主要介绍了SpringBoot结成MyBatis-Plus最全配置指南,包括依赖引入、配置数据源、Mapper扫描、基本CRUD操... 目录前言详细操作一.创建项目并引入相关依赖二.配置数据源信息三.编写相关代码查zsRArly询数据库数

SpringBoot实现MD5加盐算法的示例代码

《SpringBoot实现MD5加盐算法的示例代码》加盐算法是一种用于增强密码安全性的技术,本文主要介绍了SpringBoot实现MD5加盐算法的示例代码,文中通过示例代码介绍的非常详细,对大家的学习... 目录一、什么是加盐算法二、如何实现加盐算法2.1 加盐算法代码实现2.2 注册页面中进行密码加盐2.