ashu9314
Forum Replies Created
-
Hello JZach,
Sie müssen diesen Befehl im Setup initialisieren und ich hoffe, dass alles gut funktioniert.
Controllino_RTC_init();
BG
Ashish
-
Hello Lukas,
Thank you so much for your response. i have solved out this problem but my RTC has a different problem because i am using SD card Module, which Interfering with inbuilt RTC.
i checked it and when i remove MOSI pin cable my RTC works fine but the moment i connect SD card module MOSI again, its start showing 45/45/165.
Can i solve this problem??
-
Hello Lukas,
I’m using RTC example sketch but whenever i am checking its output at Serial Monitor, my Controllino is printing my Computer time rather printing the time i defined in “
Controllino_SetTimeDate(21,2,09,21,15,41,00);
“
Thanks and regards
Ashish
-
<div>Hello Lukas,
</div><div>Thank you so much for your reply.
</div>
-
Hello Lukas,
Thank you for your reply.
I am using Max285 to interact with my sensor and Controllino Maxi.
-
Hello Lukas,
Finally i figured it out my mistake with Keypad. i was thinking that it can initialize with same value (Analog A0) as in Arduino. But i need to change it and now its working fine.
Thanks
Ashish
-
Hello Lukas,
Yes, my display is working fine.
However, i still have some problem with my keypad. I am getting response with delay.
Yes, i have connected it to A0 in X1
Thanks
Ashish
-
I found its Solution.
#include <Wire.h>
#include <LCD.h> /*Positive was not define in my L2C library*/
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); // Set the LCD I2C address
void setup()
{
lcd.begin(20,4);
lcd.setCursor(3,0);
lcd.print(“Hello YouTube!”);
lcd.setCursor(8,1);
lcd.print(“****”);
lcd.setCursor(0,2);
lcd.print(“This is a demo text”);
lcd.setCursor(8,3);
lcd.print(“****”);
}
void loop()
{
}
-
Hello Kudz,
Thank you so much for your response.
Unfortunately, the link you shared with me its not working.