HTS221的MicroPython驱动,其实几年前就做过(https://bbs.eeworld.com.cn/thread-488307-1-1.html),但是现在看当时的程序写得不太好,通用性也不够好,因此借这次活动得机会重新修改了驱动程序,使用更加方便了。# HTS221 Humidity and temperature micropython drive# ver: 2.0# Licen...
假定从8位AD中读取数据(如果是更高位的AD可定义数据类型为int),子程序为get_ad();[b]1、限副滤波[/b]#define A 10char value;char filter(){charnew_value;new_value = get_ad();if ( ( new_value - value > A ) || ( value - new_value > A )return v...