Search results

  1. T

    TimeAlarms Library: how to update the timer?

    For example: byte powerOn_Hour = 7; byte powerOn_Minute = 30; byte sensorUpdateInterval = 120; void setup() { Alarm.alarmRepeat(powerOn_Hour, powerOn_Minute, 0, LEDsOn); Alarm.timerRepeat(sensorUpdateInterval, readDHT22); } void userSetValue() { powerOn_Hour = 9; // <--...
  2. T

    Encoder Library Qestion

    Arduino has PCINT interrupt for all pins. Can I use an Endocer Library with PCINT?
  3. T

    1-wire PWM

    That's why I asked - whether there are ICs for 1-wire protocol with support of PWM output. I know that there are 1-wire discrete keys: DS2405 / DS2408 / DS2413 - I use them to control the relay at a distance of 15 meters. And I like this protocol - its simplicity, reliability and minimum details...
  4. T

    1-wire PWM

    Here's how you propose: or this: That's how I want to do:
  5. T

    1-wire PWM

    CAN protocol it is involved for me. High-speed transmission is not necessary - I'm needed sometimes send to each module command to "soft start" / "glow 100%" / "soft off" command. I'i've just found this project: http://littlewire.cc/ - low cost & small MCU Attiny85 and library for 1-Wire/I2C/PWM...
  6. T

    1-wire PWM

    I want to make a chain of 20 modules for PWM dimming of 12-volt LED white strips (1 meter each). Since the controller is at a distance of 30-40 m, it is preferable to use a 1-Wire bus. The master device will be a Teensy or Attiny. Are there any specialized ICs for this? I'm found only Maxim...
  7. T

    TimeAlarms Library: how to disable or kill created Alarm or Timer?

    Hello again :) I'm found answers in readme.txt file (strange that this is not mentioned on the web page): but please explain how types (byte, int, boolean, etc.) of these functions and some code samples - how use these functions. I can't found samples.
  8. T

    TimeAlarms Library: how to disable or kill created Alarm or Timer?

    I'm use a Alarm.alarmRepeat(hours, minutes, seconds, function) function in my alarm clock - create an alarm that will call a function every day at a particular time. How to disable/kill/pause this Alarm?
  9. T

    Arduino: how to once save date & time to RTC from __TIME__ and later get from RTC?

    Is this code takes time from __TIME__ only once after flashing? I think he does it after every reboot, or am I wrong?
  10. T

    Arduino: how to once save date & time to RTC from __TIME__ and later get from RTC?

    Arduino: how to once save date & time to RTC from __TIME__ and later get from RTC? Please help with code for Arduino. I have a module DS1307. I'm needed that after the firmware update MC will took the time and date from __ DATE__ and __ TIME__ constants and wrote them to RTC (may be need use...
Back
Top