Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. ceech
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by ceech

    • ceech

      Connecting Gateway to Domoticz
      Domoticz • • ceech  

      21
      0
      Votes
      21
      Posts
      7762
      Views

      ceech

      @mfalkvidd First thing one does is to follow instructions exactly and hope things will work out. They don't. You try a different type of connection. Which one? Why one or the other? Which option among the same type? It doesn't work, either. Now, you are thinking, ok this guide is for several controllers, so how do I adapt it for my specific case. The point being, you can't adapt the instructions on your own. You have to ask someone who's done it before and knows what commands to use in order to make Gateway connect to the specific controller. For example: using --my-gateway=ethernet --my-controller-url-address=YOUR-CONTROLLER-ADDRESS will never connect your Gateway to Domoticz. How can one know that this is the line to be modified?
    • ceech

      Super capacitor charger/balancer with system backup
      Hardware • • ceech  

      8
      6
      Votes
      8
      Posts
      3425
      Views

      ceech

      @Bogus-Exception They are ready: http://www.ebay.com/itm/LTC3110-super-capacitor-charger-balancer-with-system-backup-/332255910339?ssPageName=STRK:MESE:IT
    • ceech

      EU flag development board
      My Project • • ceech  

      7
      2
      Votes
      7
      Posts
      2359
      Views

      ceech

      @alexsh1 I did and it is working fine at 3.3V- just the power consumption of ATmega2560 is relatively high. I will probably use some other microcontroller. I'm looking towards Arduino Zero.
    • ceech

      Ceech board upgrade
      Hardware • • ceech  

      4
      5
      Votes
      4
      Posts
      1789
      Views

      ceech

      New boards are ready and are being tested. Here is one connected to a Bluetooth module charging a battery: This is the code used in battery voltage and charge current monitoring: float readVcc() { signed long resultVcc; float resultVccFloat; // Read 1.1V reference against AVcc ADMUX = _BV(REFS0) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1); delay(10); // Wait for Vref to settle ADCSRA |= _BV(ADSC); // Convert while (bit_is_set(ADCSRA,ADSC)); resultVcc = ADCL; resultVcc |= ADCH<<8; resultVcc = 1126400L / resultVcc; // Back-calculate AVcc in mV resultVccFloat = (float) resultVcc / 1000.0; // Convert to Float return resultVccFloat; } const int current = A6; const int lipo = A7; float vout = 0.0; float vin = 0.0; int value = 0; void setup() { Serial.begin(9600); } void loop() { float napetost = readVcc(); float tok = ((analogRead(current) * napetost / 1024 ) * 1200) / 3; // convert the ADC value of charge current to miliamps float baterija = ( analogRead(lipo) * napetost / 1024 ) * 2; // measuring battery voltage Serial.print("Vcc = "); Serial.print(napetost); Serial.println("V"); delay(400); Serial.print("Charge current = "); Serial.print(tok); Serial.println("mA"); delay(400); Serial.print("Battery voltage = "); Serial.print(baterija); Serial.println("V"); delay(400); Serial.println("----------------------------"); delay(2000); } /* Improving accuracy: To do so, simply measure your Vcc with a voltmeter and with our readVcc() function. Then, replace the constant 1107035L with a new constant: scale_constant = internal1.1Ref * 1024 * 1000 where internal1.1Ref = 1,1 * Vcc1 (per voltmeter) / Vcc2 (per readVcc() function) Example: For instance, I measure 3,43V from my FTDI, the calculated value of Vref is 1,081V. So (1,081 x 1000 x 1024) = 1107034,95 or 1107035L rounded up. Use smoothing example from IDE to smooth the data from ADC. */ Charge current is limited to 400mA and can be easily changed to another value by changing just one resistor.
    • ceech

      Energy harvester
      My Project • power supply supercapacitor • • ceech  

      27
      4
      Votes
      27
      Posts
      14635
      Views

      ceech

      @epierre You can use a Peltier element to power this board. Like this one: http://www.ebay.com/itm/TEC1-12706-12V-60W-Heatsink-Thermoelectric-Cooler-Cooling-Peltier-Plate-Module-/121349774916?hash=item1c41029e44:g:mukAAOSwDNdVrg-U
    • ceech

      Universal wireless sensor board w/NRF24l01+ and ESP8266 socket - ceech board
      Hardware • board • • ceech  

      41
      1
      Votes
      41
      Posts
      22208
      Views

      ceech

      @epierre I normally use a reflow oven and in your case I had to use a heat gun.
    • ceech

      Wireless power monitor with LTC2946, help needed
      Development • • ceech  

      2
      0
      Votes
      2
      Posts
      1562
      Views

      Sparkman

      @ceech Looks like a great project. There's another library here: https://github.com/phishman/LTC2946 which looks to be quite a bit smaller. Not sure if all the functions you'll need are available in it. Cheers Al
    • ceech

      Sensor board w/ liPo charger and fuel gauge +BMP180 +HTU21
      Hardware • • ceech  

      37
      0
      Votes
      37
      Posts
      23469
      Views

      ceech

      @MikeF Well not limiting, but reducing. Connect one or two ordinary diodes in series with the input, and you will reduce the voltage for 0.7V for every diode.
    • ceech

      Small Mosfet transistor to high power Mosfet driver
      Hardware • • ceech  

      1
      1
      Votes
      1
      Posts
      1114
      Views

      No one has replied

    • ceech

      3D pictures from EagleCAD files
      General Discussion • • ceech  

      2
      6
      Votes
      2
      Posts
      2339
      Views

      Sparkman

      @ceech Looks great, thanks for posting it. Cheers Al