
zaerymoghaddam's instructables
Achievements
- zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With Arduino
- zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With ArduinoView Instructable »
I don't really get what you mean by "replace decoded numbers of another remote". Can you elaborate more?
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and Arduino
HiIs the constant value representing the screen size correct and matches your display size? Also it can be a hardware issue. Do you have another display module to test? I normally buy at least two of such items to help me troubleshooting such problems.
View Instructable »HiIs the constant value representing the screen size correct and matches your display size? Also it can be a hardware issue. Do you have another display module to test? I normally buy at least two of such items to help me troubleshooting such problems.
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
Hi FerenS3As far as I know, these OLED modules have a fixed address and so you can't use more than one of them in a single I2C bus. However I think it should be possible to use two other pins of the arduino as another I2C bus and connect the second display to that bus. I've never tested that but it worth to try. You can take a look at SoftwareI2C library (https://playground.arduino.cc/Main/SoftwareI2CLibrary) It claims that it can setup I2C on any port.Also another solution could be to find and bug an OLED display that allows you to set its I2C address via a jumper or soldering path. It's a common technique used for such situations. Actually I've not found any OLED display with an adjustable address :(
- zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With ArduinoView Instructable »
Thanks for mentioning that martindanielz. It's now fixed.
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
You're welcome ;)
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
As mentioned in the text, you can find it in my Arduino Editor.
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
Thanks Ashraf, Good luck :)
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
Hi OviBIf you're going to use the libraries you mentioned in your comment, then the code doesn't need to be changed that much. Methods I used are all defined in Adafruit library and they have provided these methods for both versions of the display (I2C as well as SPI) on top of GFX library. The only changes that I can imagine are:1 - Wiring (obviously)2 - Headers included on top of the code (SPI, GFX, 1306)3 - (Probably) some constant needed to be defined in the codeI suggest you to take a look at the following code and libraries that are included (and their order) on top of the code:https://github.com/jandelgado/arduino/blob/master/...You can see that it included both SPI and Wire library so my guess is that it should work in both cases. Wire is the underlying library that would be used …
see more » - zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With ArduinoView Instructable »
Definitely not directly. Arduino (or any logic level signals like the one used by this breakout board) can't provide enough current to powerful devices (e.g. motors, leds, etc.). You should always try to think about the Arduino part of your circuit as the controlling part. Arduino can decide when to turn something on or off via one of the GPIO pins. You should connect your device (15W LED in you case) to an standalone power supply and place an electronic switch (e.g. a mosfet) between its power source and the LED and whenever you want to turn it on or off, you can just send a signal from Arduino to that switch (for example by setting an output pin to HIGH or LOW) to turn that digital switch on or off. You can easily find a sample diagram on the Internet (here is an example):When you finis…
see more » - zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With ArduinoView Instructable »
Are you sure you're running this code? This code is using IRremote.h library while your error indicates that there is an error on RobotIRremote library!You may have installed an invalid library on your Arduino IDE.
- zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With ArduinoView Instructable »
Hi PrakharIt's not easy to say exactly what's the problem. But based on the error message, looks like a compilation issue regarding variable TKD2. Can you post your complete code or at least more than a single line to inspect it more?
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
It has been designed originally by Adafruit to work with 3.3V and it's boosted internally to 5V. So it's safe to use the 5V to work with that. I also used the 5V for this tutorial. You can check this link for more information: https://learn.adafruit.com/monochrome-oled-breakou...
- zaerymoghaddam's instructable Fun With OLED Display and Arduino's weekly stats:
- zaerymoghaddam commented on zaerymoghaddam's instructable Fun With OLED Display and ArduinoView Instructable »
Yeah it's quite feature reach. You're welcome ;)
- zaerymoghaddam commented on mikey77's instructable Building Small Robots: Making One Cubic Inch Micro-Sumo Robots and SmallerView Instructable »
Very useful tips and tricks. Thanks for sharing.
- zaerymoghaddam commented on mikey77's instructable Build a Very Small Robot: Make the World's Smallest Wheeled Robot With a Gripper.
Incorporating magnets in such an smart way is really impressive. Great job :)
View Instructable »Incorporating magnets in such a smart way is really impressive. Great job :)
- zaerymoghaddam entered Using Infrared Sensor With Arduino in the First Time Author Contest contest
- zaerymoghaddam entered Fun With OLED Display and Arduino in the Makerspace Contest 2017 contest
- zaerymoghaddam commented on zaerymoghaddam's instructable Using Infrared Sensor With Arduino
- zaerymoghaddam followed tools, kits, solar, electronics and 22 others channel
You're right. thanks for the point. I removed the "IRremoteInt.h" from the actual code shared via my Arduino web editor.