jscottbee
jscottbee
@jscottbee
Member
Joined: 2019-06-15 4:41 pm
Last seen: 2019-07-11 3:12 pm
Topics: 7 / Replies: 100
Reply
RE: Post your Model Railroads Here

I take full responsibility for my stupidity ;)

5 years ago
Reply
RE: CARA-2 (Autonomous Vehicle/Robot)

Yeah, perf board soldering can be quite tedious. It really cheap now to get PCBs made.

5 years ago
Reply
RE: Zero out IMU

Hmmm, just write a 0x00 to reg 0x6b and start reading the data hoping for the best? :) You could build a test rig and do calibrations whilst moving in...

5 years ago
Reply
RE: My home navigation bot.

Thanks. I goofed on the link copy :)

5 years ago
Reply
RE: Happy Canada Day!

Happy Canada day Bill. I hope it brings you many "round" wheels. ;)

5 years ago
Reply
RE: My home navigation bot.

A very small update to my project.

5 years ago
Reply
5 years ago
Reply
RE: Help needed with I2C and wire.h

Just place them under you include section then just use them like you would a function. i.e. int dec_val = bcd2dec (0x25);

5 years ago
Forum
C++
Reply
RE: Help needed with I2C and wire.h

These are macros I did for bcd translation from a pic controller project I did. They should work. #define bcd2dec(bcd_in) (bcd_in >> 4) * 10 + (...

5 years ago
Forum
C++
Reply
RE: Help needed with I2C and wire.h

Glad it worked. After you said it worked on startup and not after, I had an oh yeah moment.

5 years ago
Forum
C++
Reply
RE: Help needed with I2C and wire.h

Try this before your requestFrom call in loop ( ): Wire.beginTransmission (ds3231_address); // Set device to start read reg 0 Wire.write ((byte) 0...

5 years ago
Forum
C++
Reply
RE: Windows Forms Programs in C# or any other language

It's been a long time since I did any win forms, all C#. I had a couple of large apps back in like 2004, they are now WPF and I only support the backe...

5 years ago
Reply
RE: Help needed with I2C and wire.h

Worth a try. Are you using pull-ups on the I2C bus? I have learned by lots of errors that it's better to than not.

5 years ago
Forum
C++
Page 2 / 8