Tell us about yourself!
- Gökhan Türkeli followed megardi
- Gökhan Türkeli commented on Nouwen's instructable Grow a Keyboard
- Gökhan Türkeli commented on Karanveer105's instructable TELEBOT (Complete Home Automation Using Telegram Bot)View Instructable »
Do this with an Orange Pi!
- Gökhan Türkeli commented on TheCircuit's instructable Interface Moisture Sensor With NodeMCUView Instructable »
I get an error after uploading the sketch on the serial monitor:ets Jan 8 2013,rst cause:4, boot mode:(1,6)wdt resetI connected the board to my laptop. I googled the error msg and saw that it is most likely a power issue. It is recommended to use a powerful power source. But since the project uses the serial monitor how can I use an external power source?Do you know any other reason why I get this error? ps: I tried with multiple nodemcus on multiple computers including desktops. Boards functions as they should if I don't use an output pin.
- Gökhan Türkeli commented on goks_lf's instructable Arduino Soil Moisture SensorView Instructable »
Nr 3 sounds right but when I try that I get nonsense sensor value. In the air sensor value just random. In the soil it is between 0 and 10 no matter how wet the soil is. Any idea why?
- Gökhan Türkeli commented on hydronics's instructable Mini-Split 7-day Thermostat for a Tiny HouseView Instructable »
I tried this with a plain IR led. I can read the AC remote code but I cannot send it. AC doesn't respond the IR led. I am not using an RTC module. Can that be the reason?
- Gökhan Türkeli commented on raphael.michaels712's instructable Control Daikin AC From Anywhere With Beautiful UI and LosantView Instructable »
Seems really nice. I tried a similar project with Blynk and although I received and sent the signals I couldn't succeed to get a response from the AC.It is a really nice instructable though. Just it is a pity since there are lots of no name ACs around which usually use other manufacturers' communication protocols such as Samsung.
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into Your SmartphoneView Instructable »
Hello again! I was trying to make this project work for me months ago but I couldn't figure it out. Summer is here and I decided to look at the codes again. This was a part of my code:BLYNK_WRITE(V0){if ( pinValueV0 == 1 ){ irsend.sendSAMSUNG(0xB24D3FC0, 32);} else {}}I realised that I am not checking any parameter from Blynk mobile app. Blynk parameter isn't transferred to the variable. So I changed it this way.BLYNK_WRITE(V0){if ( param.asInt() == 1 ){ irsend.sendSAMSUNG(0xB24D3FC0, 32);} else {}}I changed the IR led with a regular led and tried it. I saw that it blinks for a second every time I push the button no matter how long I keep the button pressed on in the app. Just like it should happen. Nice!I changed the led with the IR led and checked it with a camera and it blinked again.B…
see more » - Gökhan Türkeli followed survival channel
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into Your SmartphoneView Instructable »
Hello EllisB1. Well actually I copy/pasted all of the code, Blynk configuration and the circuit. I don't know what is wrong. If any of the readers can successfully make it work please post your code and other details. I want to understand what is wrong.
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into Your SmartphoneView Instructable »
I don't blame you, I asked too many questions. I couldn't make it work, I don't why. Please let me know if you come by any solutions somehow.
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into Your Smartphone
EllisB1 thank you for the answer. Then how should the code be? I don't understand Arduino coding very well:(
View Instructable »I changed that part as below but still it doesn't work.BLYNK_WRITE(V0){if ( pinValueV0 == 1 ){ irsend.sendSAMSUNG(0xB24D3FC0, 32);} else {}}
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into Your SmartphoneView Instructable »
I changed the code for 2 buttons. I changed the button mode. Still no luck.I added Bylink ss's. New code below:#define BLYNK_PRINT Serial #include <ESP8266WiFi.h>#include <BlynkSimpleEsp8266.h>#include <SimpleTimer.h>#include <IRremoteESP8266.h>char auth[] = "abcd";char ssid[] = "Network";char pass[] = "123";char server[] = "blynk-cloud.com";SimpleTimer testingTimer;IRsend irsend(0); ///an IR led is connected to GPIO 0 --> D4int pinValueV0;int pinValueV1;BLYNK_WRITE(V0){if ( param.asInt() && pinValueV0 == 1 ){ irsend.sendSAMSUNG(0xB24D3FC0, 32);} else {}}BLYNK_WRITE(V1){if ( param.asInt() && pinValueV1 == 1 ){ irsend.sendSAMSUNG(0xB24D7B84, 32);} else {}}void setup(){Serial.begin(115200);Serial.println();Se…
see more » - Gökhan Türkeli commented on EllisB1's instructable All remotes into you smatphoneView Instructable »
The first step(recording remote signals) gave me Samsung code. When they didn't work I tried the raw code but I changed it now. I tried it with 32 bit Samsung code and it didn't work.I tried to send the code(0xB24D3FC0 or B24D3FC0) with serial monitor and it didn't work.I tried to use a module like this but I couldn't figure out how to use the pins with your code.I added my Bylnk button conf and nodemcu-ir led ss's.So I am pasting my final code below. I couldn't make it work, sorry:(#include <SimpleTimer.h>#include <IRremoteESP8266.h>char auth[] = "abcd";char ssid[] = "Networkname";char pass[] = "123";char server[] = "blynk-cloud.com";SimpleTimer testingTimer;IRsend irsend(0);int pinValueV0;BLYNK_WRITE(V0){if ( param.asInt() && p…
see more » - Gökhan Türkeli commented on EllisB1's instructable All remotes into you smatphone
I recorded my air conditioner remote with heater settings on/off and cooler settings on/off. I have 4 values(actually 3, offs are the same).In Blynk I have 2 buttons. Virtual pin 0 for Heater and Virtual pin 1 for Cooler with switch mode. Outputs are 0-1 for both.For Nodemcu the code is below. On the serial monitor I get "ready" message but when I tap I don't get any message. What am I doing wrong? I guess the Bylnk settings and/or codes are wrong but it seems I need help.#define BLYNK_PRINT Serial#include <ESP8266WiFi.h>#include <BlynkSimpleEsp8266.h>#include <SimpleTimer.h>#include <IRremoteESP8266.h>char auth[] = "abcd";char ssid[] = "networkname";char pass[] = "pass";char server[] = "blynk-cloud.com";SimpleTimer…
see more »View Instructable »Well, I am trying to follow your directions but the last part doesn't give anything(at least to me) to follow. You could add a simple on/off integration.I tried to understand the code you gave(ellis-remote.ino) but I couldn't figure out which kind of change I should make.
- Gökhan Türkeli commented on EllisB1's instructable All Remotes Into You SmatphoneView Instructable »
What about air conditioners?
- Gökhan Türkeli made the instructable Simple Led Control With Blynk and NodeMCU Esp8266 12EView Instructable »
Thank you so much! Next step, control a unicorn wirelessly!
- Gökhan Türkeli commented on DuncanW10's instructable Orange Pi One Setup GuideView Instructable »
I finally make it work. I used a proper jack with usb end on the other side and it worked. I did what you have written as a start. I come to the point to instal the desktop enviroment but I couldn't pass that. When I prompt apt-get task-lxde-desktop system asks me first the install will result 224 mb extra space and then asks do I want to use several packages that are not regisetered. I said yes to both and system gave me hundreds of errors. The final message is "unable to fetch some archives, maybe run apt-get update or try with --fix-missing". What did I do wrong this time?
- Gökhan Türkeli commented on MoniCris's instructable Air Conditioning web controlled by ArduinoView Instructable »
@snadeem5, I just received my nodemcu package yesterday. Please let me know if you succeed:)
- Gökhan Türkeli commented on MoniCris's instructable Air Conditioning web controlled by ArduinoView Instructable »
The fun is to be able to control the AC:) That's enough for me.I tried to do what you said but I couldn't do it. I couldn't make the code workAs far as I understand code consist several parts:1- define the signals2- define the output pin3- operate selected signalSo I modified your code as attached. But it doesn't work. I made something wrong I guess. I checked the led with phone cam but it doesn't work.I can get the signals with your scheme but I cannot send them.
- Gökhan Türkeli commented on jackbell16's instructable How to control the air conditioner A/C at home with Arduino, even remotely!
Hello,How should I fix the code to send only on/off signals? With them only 1 Uno will be enough I guess.
View Instructable »I receive code but I cannot send any. I also bough this: https://www.aliexpress.com/item/5V-IR-Infrared-Rem... but still no luck. I have been trying for weeks. I don't know what I am doing wrong.
- Gökhan Türkeli commented on Wally_Z's instructable How to control your TV with an Arduino!View Instructable »
It didn't work for my air conditioner. I receive the code which is much longer than a typical TV remote but I cannot send it.
- Gökhan Türkeli commented on MoniCris's instructable Air Conditioning web controlled by ArduinoView Instructable »
Great instructable!Is it not possible to use the Uno alone(without ethernet) and send simple on/off signals? I receive data from my remote but I couldn't figure out to send data.
- Gökhan Türkeli commented on inspiretomake's instructable Meteorite RingView Instructable »
What is the name of the machine you used to shape the meteorite?
- Gökhan Türkeli followed gardening channel
- Gökhan Türkeli commented on DuncanW10's instructable Orange Pi One Setup GuideView Instructable »
I tired 2 different sd cards. Brands are Smare and Miniseas.The thing is when I first boot the board I saw the messages on the screen. If the image was written wrong then it is still wrong now but I cannot see anything on the screen. It is weird and I cannot understand what might happened. The only thing I can try is using an adapter to power the board for now. I will tell the results after I tried. So if there are people like me they may know what to do for sure.
- Gökhan Türkeli commented on DuncanW10's instructable Orange Pi One Setup GuideView Instructable »
Thank you for the answer. So the problem should be related with power or storage. iPhone charger is original. So I don't think(and want to believe:( ) it fried the board. I tried to change the sd card without changing the power supply. I now see the green led blinks for a while and stays on continuously but nothing on the screen. I will try the power thing if I can. One more question though. How can I power this board with a battery then? I have this adjustable power supply module. Can it be used to power the board?
- Gökhan Türkeli commented on DuncanW10's instructable Orange Pi One Setup GuideView Instructable »
I formatted the sd card as you said. Started the board. Saw the green led and messages on the screen. I waited for a while and then the screen went black.After that I reset, plugged in and out but I couldn't see anything on the screen. The green led never lighted up again. The only thing that gives me a hint about the board is consuming energy is ethernet port leds. They work every time I reset the device.I am using iPhone's original power plug and a usb cable to power up the board with 2nd and 6th pins(5V and GND respectively). What am I doing wrong?
- Gökhan Türkeli commented on SANUKI UDON's instructable How to make Simon Says using ATtiny13a and mini breadboard.View Instructable »
Is it possible to add sound?
- Gökhan Türkeli commented on JayconSystems's instructable Getting Started With the ESP8266 ESP-01View Instructable »
I tried nearly all tutorials about beginning to use ESP8266 but I haven't succeeded yet.- I made the wiring as shown in the diagram,- Uploaded bare minimum,- Used serial monitor and saw ready messageBut I didn't get any response for AT command. And after a short while ESP started to reboot itself every 10 seconds. And gets really really hot. This is the message after every reboot:ets Jan 8 2013,rst cause:4, boot mode:(3,5)wdt resetload 0x40100000, len 1396, room 16tail 4chksum 0x89load 0x3ffe8000, len 776, room 4tail 4chksum 0xe8load 0x3ffe8308, len 540, room 4tail 8chksum 0xc0csum 0xc02nd boot version : 1.4(b1)SPI Speed : 40MHzSPI Mode : DIOSPI Flash Size & Map: 8Mbit(512KB+512KB)jump to run user1 @ 1000{l�‚{lÌÿAi-Thinker Technology Co.,Ltd.readyI have b…
see more » - Gökhan Türkeli commented on FuzzyStudio's instructable DIY Bare Minimum Arduino Mega 2560
Well, the author answered a question but this one. This means "no" I guess:)
Well, the author answer a question but this one. This means "no" I guess:)
View Instructable »Well, the author answered a question but this one. This means "no" I guess:)
- Gökhan Türkeli commented on mpilchfamily's instructable Arduino Simon Says
- Gökhan Türkeli followed reuse, raspberry-pi, electronics, microcontrollers and 1 other channel
- Gökhan Türkeli commented on 陳亮's instructable Connect LCD to Raspberry Pi Without Breakout BoardView Instructable »
Hello. I wonder if something like this works as flat cable: http://www.aliexpress.com/item/10Pcs-1mm-Pitch-8Pi...It is a lot cheaper:)
I have 20 days. Would it be too early to begin? Will the seeds die because of time?