Search found 3 matches

by youmebangbang
Sun Sep 17, 2017 1:03 am
Forum: ESP32 Arduino
Topic: Serial monitor output not working after starting i2c wire library
Replies: 3
Views: 6071

Serial monitor output not working after starting i2c wire library

I am using the arduino IDE and want to get I2C data from a wii nunchuck controller. I am just trying to Serial.print() some values but nothing goes to the com viewer after wire is started. void setup() { Serial.begin(115200); Serial.println("HELLO"); Wire.begin(NUNCHUK_ADDRESS); Wire.beginTransmissi...
by youmebangbang
Thu Aug 31, 2017 2:43 am
Forum: General Discussion
Topic: CPU halting when working with timeval, gettimeofday()
Replies: 2
Views: 4628

CPU halting when working with timeval, gettimeofday()

Hi, I am trying to run a simple timer program to print to COM ever so many milliseconds. Code compiles just fine but when i run i get a CPU halted error , " Guru Meditation Error of type LoadProhibited occurred on core 1. Exception was unhandled." I know it has to be a simple problem (im learning). ...