Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Teensy software #2

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fixed line 132 variable calls
  • Loading branch information
QuackWifHat committed Nov 21, 2024
commit b2dfd8e43ecd59c28a49e39655434d17f3aefbb7
6 changes: 3 additions & 3 deletions teensy_software/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "Arduino.h"
#include <Adafruit_BME680.h>
#include <Adafruit_I2CDevice>
#include <Adafruit_I2CDevice.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_HX711>
#include <Adafruit_HX711.h>
#include "Wire.h"
#include <SPI.h>
#include <RH_RF95.h>
Expand Down Expand Up @@ -129,7 +129,7 @@ void loop(){
/* * * * * Load Cell * * * * */
int loadIn1 = analogRead(LOAD_IN_1);
int loadIn2 = analogRead(LOAD_IN_2);
int diff = load_in_1 - load_in_2;
int diff = LOAD_IN_1 - LOAD_IN_2;
Serial.println("Load cell outputs: ");
Serial.println(loadIn1);
Serial.println(loadIn2);
Expand Down