Posts
Showing posts from April, 2023
Automatic Blood Pressure Monitor - An Inside Look
- Get link
- X
- Other Apps
ESP32 Code used in Arduino IDE to take readings from the HX710 ADC based pressure sensor below. This just streams the data to serial (USB) interface for display on serial monitor/plotter. /********************************************************************** Filename : ESP32_blood_pressure Description : Take HX710 ADC data from pressure sensor Users visit the site to view the image data ESP32 camera. Author : Tinker Foundry **********************************************************************/ // References: // https://swharden.com/blog/2022-11-14-hx710b-arduino/ // https://www.electronicscomp.com/datasheet/hx710b-ic-datasheet.pdf #include <WiFi.h> const char * ssid = "xxxxxx" ; // input your wifi name const char * password = "xxxxxx" ; // input your wifi passwords const int HX_OUT_PIN = 12 ; // input from HX710 ADC chip - serial input const int HX_SCK_PIN = 13 ; // clock output to the HX710 ADC chip #defin
Testing our ESP32 Stereoscopic Camera - How far away is the egg?
- Get link
- X
- Other Apps