Browse Source

perf

master
root 3 years ago
parent
commit
f1243ad158
5 changed files with 1116 additions and 2 deletions
  1. +49
    -0
      Attiny_Solar_Energy_Harvest/docs/39.tex
  2. +485
    -0
      Attiny_Solar_Energy_Harvest/docs/39b.tex
  3. +49
    -2
      Attiny_Solar_Energy_Harvest/docs/40.tex
  4. +56
    -0
      Attiny_Solar_Energy_Harvest/docs/42.tex
  5. +477
    -0
      Attiny_Solar_Energy_Harvest/docs/43.tex

+ 49
- 0
Attiny_Solar_Energy_Harvest/docs/39.tex View File

@ -425,6 +425,55 @@ with my protoboard, it's as easy as, 1) connect cable to protoboard, 2) press P
it doesn't print that it detects the attiny. It's pretty good about this, and if connected
correctly, will just write to the chip, when P is pressed.
\subsubsection{AVR-objdump -S}
Here's some code from lowpower_tx433mhz_2/3:
\begin{verbatim}
PORTB = bitRead(*strctPtr, i) << 2;
8c: 40 a1 lds r20, 0x40 ; 0x800040 <__DATA_REGION_ORIGIN__>
8e: 51 a1 lds r21, 0x41 ; 0x800041 <__DATA_REGION_ORIGIN__+0x1>
90: 62 a1 lds r22, 0x42 ; 0x800042 <__DATA_REGION_ORIGIN__+0x2>
92: 73 a1 lds r23, 0x43 ; 0x800043 <__DATA_REGION_ORIGIN__+0x3>
94: 08 2f mov r16, r24
96: 04 c0 rjmp .+8 ; 0xa0 <main+0x38>
98: 76 95 lsr r23
9a: 67 95 ror r22
9c: 57 95 ror r21
9e: 47 95 ror r20
a0: 0a 95 dec r16
a2: d2 f7 brpl .-12 ; 0x98 <main+0x30>
a4: 41 70 andi r20, 0x01 ; 1
a6: 44 0f add r20, r20
a8: 44 0f add r20, r20
aa: 42 b9 out 0x02, r20 ; 2
#else
//round up by default
__ticks_dc = (uint32_t)(ceil(fabs(__tmp)));
#endif
__builtin_avr_delay_cycles(__ticks_dc);
ac: 43 e0 ldi r20, 0x03 ; 3
ae: 4a 95 dec r20
b0: f1 f7 brne .-4 ; 0xae <main+0x46>
b2: 00 00 nop
b4: 8f 5f subi r24, 0xFF ; 255
b6: 9f 4f sbci r25, 0xFF ; 255
uint8_t i = 0;
while(1)
{
for(i=0;i<32;i++){
b8: 80 32 cpi r24, 0x20 ; 32
ba: 91 07 cpc r25, r17
bc: 39 f7 brne .-50 ; 0x8c <main+0x24>
be: e4 cf rjmp .-56 ; 0x88 <main+0x20>
\end{verbatim}
It's easily readable assembler. See at the end, are the two jumps
back in the loop 0x8c (for loop), and 0x88 (while 1). See the read
on PORTB, and see the delay, which was _delay_us(10), but expands to the avr library definition.
\subsection{Further Notes}
https://www.eevblog.com/forum/microcontrollers/powering-devices-via-gpio-pins/msg2720044/\#msg2720044 - Using GPIO to power devices.

+ 485
- 0
Attiny_Solar_Energy_Harvest/docs/39b.tex View File

@ -0,0 +1,485 @@
\documentclass[11pt]{article}
%Gummi|065|=)
\usepackage{graphicx}
\usepackage{caption}
\usepackage{xcolor}
\usepackage[vcentering,dvips]{geometry}
\geometry{papersize={6in,9in},total={4.5in,6.8in}}
%\title{\textbf{Door Alarm}}
\author{Steak Electronics}
\date{}
\begin{document}
%\maketitle
\tableofcontents
\textcolor{green!60!blue!70}{
\section{Attiny Solar Energy Harvest Tests}}
I have the following:
\begin{itemize}
\item Solar panels
\item Attiny 10
\end{itemize}
To this list, I will add a supercap, and an energy harvesting IC. The goal being to load the super cap during the day, and to run 24/7. I will need an exceptionally low power micro. The super cap will need to be about 3.3V or 5V.
\textcolor{green!60!blue!70}{
\subsection{Micro Considerations}}
The Arduino Atmega328P is not an option. I'm looking to have a current draw of only 1mA max, (ideally 500uA) when active. Moteino is also not an option for this. Those are made for batteries. I want to be battery free. A super cap, however can be used to store energy. I'll get to that shortly.
For micros, I have some Attiny10 on hand, and these have a reasonably low power pull in active mode. Let's build those up first. What will the micro do? No idea. I haven't a clue.
\textcolor{green!60!blue!70}{
\subsubsection{Micro Notes}}
Must run at 1.8V / 1MHz per front page of data sheet, for 200uA draw in active mode.
\\
\\
\textcolor{green!60!blue!70}{
\subsubsection{Energy Storage}}
I don't want a battery. Let's go with a super cap. The solar panels will only be active some of the time, so I will want to harvest energy with some kind of IC into the cap when the sun is out.\footnote{Reference: www.analog.com/media/en/technical-documentation/technical-articles/solarenergyharvesting.pdf is a start. I'll need to do more research.}
\textcolor{green!60!blue!70}{ \subsubsection{Make parts, not scrap}} I will
want to make sure that all parts I build are perf board parts, not
breadboard scrap (to be torn down and rebuilt again). This is an Attiny,
so no need to test much, yet.
\textcolor{green!60!blue!70}{
\subsection{Programming}}
To program the Attiny10, I'll use the Arduino adapter from the Junk + Arduino blog. I built it up\footnote{Had slight error where the Arduino + board wouldn't read - pins too short on headers, then the arduino wouldn't boot - due to bad connection on perf board shield. Thankfully, the USB port didn't try to run. Protection circuitry cut in on the laptop.}, and was able to Read the memory. In order to upload to the board, you will need a compiler setup. You can possibly do it in AVRGCC, but instead I opted for either Arduino IDE (via Attiny10Core which didn't work), and then went to Mplab. In order for mplab 5.25 to work, it will need XC8 compiler, and there is a pack that can be downloaded through the IDE to get Attiny10 support.
It appears the AVR Dragon (which I have) can not be used. However, other programmers can be used. Pickit 4, Mkavrii, stk600, I think.
\textcolor{green!60!blue!70}{ \subsubsection{Testing Arduino Loader}}
Tested this with the blink\_LED.c in code folder. The code is as simple as possible.
It is the following:
\begin{verbatim}
//#include <xc.h>
#include <avr/io.h>
#include <util/delay.h>
int main(void)
{
// PB2 output
DDRB = 1<<2;
while(1)
{
// Toggle PB2
PINB = 1<<2;
_delay_ms(500);
}
}
\end{verbatim}
When programmed in Mplab, with XC8 compiler, and Attiny10 support, I get the following
hex output:
\begin{verbatim}
:100000000AC020C01FC01EC01DC01CC01BC01AC01B
:1000100019C018C017C011271FBFCFE5D0E0DEBF41
:0A002000CDBF03D000C0F894FFCF5D
:10002A0044E041B940B95FE966E871E05150604087
:0A003A007040E1F700C00000F5CFB0
:02004400DDCF0E
:00000001FF
\end{verbatim}
The content of this hex isn't the focus of this passage. Instead, I want you to review the
results of a D for Dump Memory, by the Arduino Loader.
\begin{verbatim}
Current memory state:
registers, SRAM
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
0000: 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0030: 00 00 00 00 00 00 03 00 00 79 00 03 00 00 00 00
0040: B7 AD AE FA 58 70 63 6B FB 5A B4 1B FF FF 35 3F
0050: 67 D7 33 43 DF 5F FB 72 C9 7D FE E9 9D C5 00 12
NVM lock
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F00: FF FF
configuration
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F40: FF FF
calibration
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F80: 79 FF
device ID
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3FC0: 1E 90 03 FF
program
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
4000: 0A C0 20 C0 1F C0 1E C0 1D C0 1C C0 1B C0 1A C0
4010: 19 C0 18 C0 17 C0 11 27 1F BF CF E5 D0 E0 DE BF
4020: CD BF 03 D0 00 C0 F8 94 FF CF 44 E0 41 B9 40 B9
4030: 5F E9 66 E8 71 E0 51 50 60 40 70 40 E1 F7 00 C0
4040: 00 00 F5 CF DD CF FF FF FF FF FF FF FF FF FF FF
4050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
4060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
(...some memory omitted here for brevity...)
43E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
43F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
\end{verbatim}
Notice that the "AC020C01F" is set. That is from the hex. But the 01000...
before it seems to be missing. Some deciphering of how the Arduino programs
the Attiny is in order here. It also doesn't end the same.
Regardless, when programming, the Arduino reports 70 bytes written, and
likewise in the Mplab project memorymap.xml file, it also notes 70 bytes
for the sketch. This lines up.\footnote{Although for an unknown reason, every command registers twice on the Arduino serial monitor, but this appears to be harmless.}
The blinking LED works. Let's move on.
\textcolor{green!60!blue!70}{\subsubsection{Conclusion on Arduino Programming Attiny10}}
It's possible, but you have to make a dedicated jig (almost), so it might be easier to use the official programming tools. However, based on this https://www.avrfreaks.net/forum/pickit-4-and-avr-mcu I might not have a choice. So I will use the Arduino for now. But will have to devise what on board parts are req'd for programming, and incorporate into proto board layout.
\textcolor{green!60!blue!70}{ \subsubsection{IO Port Switching Speed}}
Using the above code without any delay\_ms, I get the following results from a default clock
speed, and a 128KHz clock speed. This test was done to confirm that I could change the clock with
\begin{verbatim}
//Write CCP
CCP = 0xD8;
//change CLK to 128KHz
CLKMSR = 0b01;
\end{verbatim}
There was no issue.
\begin{verbatim}
Default CLK (8MHz? or 1MHz?): 160KHz IO Switch
128KHz CLK: 2.5KHz IO Switch
\end{verbatim}
I am going to pursue 128KHz for starters, for lower current dissipation. Note that with the Arduino loader, it is cumbersome to test and change code as you move along. It is
therefore going to be necessary to use a programmer, with a dedicated header on board.
\textcolor{green!60!blue!70}{ \subsubsection{VCC 1.8V}}
The lowest power supported: 1.8V can be applied, without any configuration
needed. It does not affect IO switching speed (although obviously amplitude is affected).
\begin{verbatim}
128KHz CLK (5.0V): 2.5256 KHz IO switch
128KHz CLK (3.3V): 2.5477 KHz IO switch
128KHz CLK (1.8V): 2.5849 KHz IO switch
\end{verbatim}
As voltage drops, IO increases.
\\
\\
\textbf{VCC Dropout voltage:}
\\
From 1.5, it drops out at 1.248V or so. Comes back at about 1.34V
\\
\\
Test size of 1.
\\
\\
Can't run this with one (AA) battery, but you could with 2.
\\
\\
Current Draw: 128KHz - IO test, 1.8V, 0.08mA (~78uA) (tested w/3478A)
\\
\\
\textcolor{green!60!blue!70}{\subsection{Application}}
First, I need a board for these and a programmer, to quickly program. Second, I need an application. I want extremely low power. Hopefully, solar with no batteries, to start. This is extremely low - that is the point. Let's keep this ridiculous.
Given the power requirements put me under 1mA (with my current panels), I'm considering the following: EEPROMs would require SPI protocol. Doable, but overcomplicated for now.
\\
\\
Eink (need to find a small and cheap enough option. So far, they have either too many pins, and/or use too much current. Something like what stores use to display prices would work, but that doesn't get the data out, only makes it readable.),
\\
\\
Third option would be RF. That is a viable path, but not today. Let's skip that for now.
\\
\\
Fourth option that comes to mind is IR. IR diodes, as in TV remotes, would work well here. I am choosing this as the first project. I will have dumb clients, that consist of - Attiny / IR / Sensor powered by solar. I will have a BBB that receives the IR data, and does all intelligent data gathering. To keep things simple, the IR will be binary ADC data, or otherwise sensor numbers. No SPI, no protocol complexity. That would require space on the Attiny.
\\
\\
Let's build some boards based on the above.
\\
\\
For sensors:
While building, I came across an option. Hall effect sensors. I think also capacitive sensors can be used. This may find a use in a gate sensor, for when a driveway gate is opened or closed. With a small battery, it would work for years.
Footprints: I had to make a footprint for this module on board package for one sensor. The solution to get footprints right? copy graphic image and make it into silkscreen on the board. Easy.
The sensor I looked at was a temp and humidity sensor SHT11 (SHT10 is obsolete). It is low power enough. However, it's \$20. So not in my price range. Otherwise, it would work here. Looks like communication is a shift register, or SPI.
\textcolor{green!60!blue!70}{
\subsubsection{Magnetic Current Sensor}}
There is this:
BM14270AMUV-LB
Which is low enough current here (<1mA). But \$7 in qty, and req's I2C. Not today.
\textcolor{green!60!blue!70}{
\subsubsection{Accelerometers}}
These are an option.
Best pinout (for deadbug) is LIS344ALHTR (but lacks vcc down to 1.8)
2nd Best pinout with full 1.8 -3.6 vcc is ADXL337BCPZ-RL7
(Keep in mind, these are low end options only)
(Analog output only. keep it simple for now.)
Runner up to all above, is KXTC9-2050-FR . But has worse pinout.
Going with AD part. \$5 in single qty.
Digital output Accelmeters are cheaper.
All have tiny package sizes.
Since I am grabbing 1 output only, will need to orient or choose correct output.
PINOUT: When I said best pinout, I meant that you can solder this by hand or with hot air, without much difficulty, because the layout does not require all pins to be connected (hoping I don't get bit by floating pins, though). Or, the layout has PWR and GND together, which means some pins can be bridged.
\textcolor{green!60!blue!70}{
\subsubsection{Temperature Sensors}}
Temperature can be boring, but why not. Let's throw one of these on: LMT84LP . Pin compatible with LM35. Supply current is maybe 8uA. Extremely low.
LM84 (1.5V starts, to 5.5), LM85 (1.8V to 5.5)
\textcolor{green!60!blue!70}{
\subsubsection{Gas Sensors}}
Lowest is 5mV as of writing on dkey. Skipping. The SHT would work, but its too expensive.
\textcolor{green!60!blue!70}{
\subsubsection{Supercap}}
For now, trying this:
FG0V155ZF
\textcolor{green!60!blue!70}{
\subsubsection{Hall Effect Sensors - Push Pull vs Open Drain Outputs}}
\begin{verbatim}9.1.1OutputTypeTradeoffsThe push-pulloutputallowsfor the lowestsystempowerconsumptionbecausethereis no currentleakagepathwhenthe outputdriveshighor low. The open-drainoutputinvolvesa leakagepaththroughthe externalpullupresistorwhenthe outputdriveslow.The open-drainoutputsof multipledevicescan be tied togetherto forma logicalAND.In this setup,if any sensordriveslow, the voltageon the sharednodebecomeslow. Thiscan allowa singleGPIOto measurean arrayofsensors
\end{verbatim} From DRV5032 data sheet.
\textcolor{green!60!blue!70}{
\subsubsection{Conclusion: Starting Sensors}}
So as a recap, to start with affordable, low power sensors for my project, I have the following types:
\begin{itemize}
\item Temp sensor (cheapest)
\item Magnetic Sensor (hall effect)
\item Movement Sensor (accellerometer) (analog output) (tiny package)
\item capacitive sensor (azoteq)(may only be short range)
\end{itemize}
Output, I have not determined yet. IR will not work, as its too high power. Unless I dedicate a battery just for the IR diode... Or make it battery powered. I'll start with batteries, but for solar panel and supercap, it will likely not be viable, unless I transmit extremely rarely. That is also an option, however.
\subsubsection{Farad to mA}
1.5F supercap can supply 1.5A for 1 second. That is 0.025A for 60 seconds, or 25mA for a minute.
Let's stay I use half that, so 12mA for 60 seconds is my supply. If I transmit once every other hour (when in sunlight)...
\subsection{PCB}
I have built rev2 of the board today. Using an Uno, user must remember to include VCC and GND. So the programming takes up all 6 pins. The 0.1'' headers were slightly close to the resistors, and the top row of VCC and GND headers are separated, so I labeled them V+2, and GND2.\footnote{Forgetting to plug in GND, and or 5v+ (for Uno), while still plugging in the TPI pins, did not break the Attiny10, in my tests today.}
The 0.05'' pin headers work perfect for scope probes. The extra breakout I made demonstrates this.
\subsubsection{PCB Programming}
By default, the Attiny10 idles around 1.5mA (5V), before programming.
First thing to do, is to program it into a low power mode.
In order to use low power, whilst using the Uno, I will need to add a jumper to the PCB,
so that you can switch between V+2, and V+1. Three pin jumper. Outside pins are each V+, internal goes to Attiny V+. I'll need to remove the trace on gerber rev2, that goes from 4 to VCC.
\subsubsection{PCB programming and use}
It's not possible to leave the Arduino plugged in, while testing the Attiny10.
example: Even if you power down the Uno, and use a jumper to change V+ rails,
the power dissipation through the TPI pins (10,11,12,13) will cause a draw of about 545uA, and the Attiny10 will not toggle its led.
Therefore, not only a power jumper is required to use the Attiny, but also
a 4 or 5 pin 0.1" cable for the TPI pins, must be disconnected before using the Attiny.
\footnote{In code section, mplab - tests2, the power draw of the 128KHz internal CLK with PB2 flipping at about 400us a cycle, at 3V VCC is about 115uA. At 2V it is ~95uA.}
\subsubsection{PCB Rev3}
\begin{itemize}
\item Added jumper to switch between different power rails, so that
Arduino can be left sort of plugged in (turns out, it is still required to disconnect 9,10,11,12,13 pins, so use a 4/5 pin cable). This makes testing low power (2-3V) code, easier, while still programming with the 5V Uno.
\item Added SOT23-6 breakout
\item Moved Resistors further from 9,10,11,12,13 pins.
\item Added separate board for analog Accelerometer.
\item Moved VCC breakout (0.5'' header pins) to connect directly to tiny, not to bottom Voltage rail.
\item Added note about VCC and GND must be connected when programming.
\item Added accelerometer pcb breakout. Package is small, but thanks to pinout/unused pins - is reasonable to solder with hot air. I knew this when I chose it... Then I forgot it earlier today.
\end{itemize}
\subsubsection{RF Comms}
I want to use RF to communicate with this device. The IR would work, but would require batteries. If I'm going to use batteries I may as well use RF. Ideally, RF without batteries would be nice.
I searched for LoRa modules, and came across this https://www.disk91.com/2015/technology/networks/first-step-in-lora-land-microchip-rn2483-test/
I've added the datasheets. The RN2483 can be set with a UART, which means two pins on the Attiny. I will want to use a transistor to turn off the module (not using sleep mode), when not in use, so that's another pin. The 4th pin would be for whatever sensor I'm using. Right now, I'm thinking an accelerometer to watch for motion on a door or gate. I may need more pins, as I'd like to be able to switch the accel ic on and off as well.
There is the Attiny40, and also an Attiny402. Different, but both worth considering. The Attiny40 is covered by my programmer, the 402 is not. 40 is from early 2010's, the 202/402 is from 2017. Also the Attiny20, which is less pins than the 40. But covered by my programmer. I would lean towards the 10 or the 20. 40 is too much IO.
Attiny10 has I2C on board (TWI). I'm going to stick with the 10. Keep it simple.
\subsubsection{Present Questions}
questions:
is a two pin UART the best I can expect to find for simple rf comms
is lora a reasonable solution here? I want as low power as possible,
Lora is not the lowest but if I transmit rarely, and for a short time perhaps it won't matter.
Is there some other way to transmit data? I don't want to use ultrasonic waves, and IR seems to be too much current, as well
as requiring line of sight / lens.
\subsubsection{Plan of attack}
I'm going to prototype with the Microchip RF modules for now, and see if I can get this working off a solar panel. I have an ADC, and with RESET disabled another IO. Goal is now:
Configure RF modules w/arduino.
Configure RF module (one Uno receiver, other tiny transmitter)
Attach any sensor that uses ADC. (temp sensor, resistor light or thermocouple, current sensor (monitoring power supply), and I have the ones I already tested today (but will hold off on - the accelerometer, and hall effect).
Desired applications
- Temp of hot surface (boiler) monitoring
- Solar current input monitoring.
As I've already worked with a current sense before in my battery project (Electronics\_Projects\_2019), I will use again the INA169. It seems to be low enough power for my needs, though I will double check in practice. The data sheet lacks obvious power dissipation figures, while sensing, though quiescient is about 50uA.
\subsubsection{Other Sensors}
I need to verify that the following sensors could be used with low power:
Light dependent Resistor / Diode
Sound sensor (mic)
\subsubsection{RF Searching}
RF Transceiver ICs require assembly/programming/time, so we want RF Transceiver modules instead. There are a number of roughly 10mA TX active, but that is the lowest I can find. Among these ics (not modules), most are SPI, have their own ARM core... The modules are a bit better in having some that can be controlled by serial. I like the TRM-433-LT, but I will skip this for now (\$20 each).
I also like the RC11xx-RC232, though the latter is about 30mA TX. That may be the best I can hope for. These two are 433MHz (ISM is 433 - 434MHz). The radiocrafts product is essentially a simplified solution, preprogrammed with a uart which can be used to adjust settings. This option appears to be on part with the microchip offering I've looked at, the RN2483, in fact they both came up on my search results, next to each other. RN doesn't have what IC they use but RC, uses CC1110.
Another option:
ZETAPLUS-433-SO is faster than others (500Kbs), and has lower TX (18mA). Up to 2KM range...
There's more options (over \$18), but for the following specifications, the above three are basically what you can choose from. Ignoring those with high TX power rates (sparkfun), or requires SPI (stmicro)
Specs:
\begin{itemize}
\item In stock
\item Frequency 433-434MHz
\item battery powered vcc range (2)
\end{itemize}
\footnote{There's only 25.}
I will start with two Radiocraft modules. Let's see how that plays out.\footnote{A set of Dev boards for the radiocraft are \$250. Ouch.}
\subsubsection{PCB Rev 5}
\begin{itemize}
\item Added instructions to back of board to speed up getting back to this project after some time.
\item Moved resistors to be further away from programming header
\item Fixed missed connection from JMP to V1 / V2 when I moved barrel plug, and added back the bottom right mounting hole in rev4.
\item Changed prg/jmp/vcc to v1/jmp/v2 (either v rail can be used for programming)
\end{itemize}
\subsubsection{Input Protection on Accidental Reverse Cable Hookup}
I'm going to want something to block plugging in the dupont cable backwards from breaking things. I had a square wave outputting on one pin of the Attiny10, and programming was going well, with the cable left in, until I removed, then connected it in backwards. The square wave blew something on the Atmega328p of the uno. This led me to quick replacement of the Uno atmega's here: electronics\_projects\_2020/AVRdragon\_Optiboot\_Atmega328
I don't know what's better. Make it foolproof, or let people learn the hard way. With the latter, they at least get a way to reprogram blank Atmegas (quite useful with Unos).
Perhaps instead, a mated connector would be enough on the breakout...
\subsubsection{Nuts \& Volts 433MHz RF Transmitters}
A recent nuts and volts issue (2019), covered a few sections on RF in one magazine. They covered, transmitters, as well as measuring power output of a transmitter (in separate articles). The RF transmitters they covered were 433MHz, ebay transmitters. The transmitters output the square wave you feed to them. Extremely basic. But also open to modifications and adaptations. The part count is very low, with minimal ICs. (The receivers do have an IC, though.)
I've bought some of these, and will do some testing.
\begin{center}
\includegraphics[scale=1.5]{../pics/rxtx_433.jpg}
\captionof{figure}{simple rx tx on 433mhz}
\end{center}
\subsection{Connecting to Programmer}
These notes may be redundant, need to double check.
When connecting, have a base setup that works as a sanity check.
It may be possible to blow out atmega328p pins if you leave attiny running, thne
plug in the cable back to front (i.e. pin 13 in 9).
You might need to reboot the arduino completely.
From Programmer Source code:
- Upload to arduino and power off
- Connect ATtiny10 as shown
- Power on and open the serial monitor
- If things are working so far you should
see "NVM enabled" and "ATtiny10/20/40 connected".
- Input one-letter commands via serial monitor:
This programmer is not foolproof, so establish a routine, and keep a working
model (pcb w/attiny) as a prototype to isolate what is broken.
\subsection{Attiny10 Timer Fail}
The goal was to get a 6KHz square wave out of the Attiny10 (first using the timer). After a night of trying to wrangle with timer 0 and CTC mode of the Attiny10 timer (which failed
to work as expected). I've decided to buy a 6KHz oscillator. I was able to get 60.3KHz
out of the Attiny using no optimization in mplab and IO as fast as possible. I was able
to get 6.13Khz using optimization and a for loop (unfortunately the nops got optimized out).
I also learned that the cable I was using to program the attiny10 was giving me much trouble.
I ended up soldering one side to an uno. That out of the way, When programming the attiny10
with my protoboard, it's as easy as, 1) connect cable to protoboard, 2) press P in serial monitor of Uno,
3) paste hex contents of mplab build into serial monitor. No need to ever reset the uno, even if
it doesn't print that it detects the attiny. It's pretty good about this, and if connected
correctly, will just write to the chip, when P is pressed.
\subsubsection{AVR-objdump -S}
Here's some code from lowpower_tx433mhz_2/3:
\begin{verbatim}
PORTB = bitRead(*strctPtr, i) << 2;
8c: 40 a1 lds r20, 0x40 ; 0x800040 <__DATA_REGION_ORIGIN__>
8e: 51 a1 lds r21, 0x41 ; 0x800041 <__DATA_REGION_ORIGIN__+0x1>
90: 62 a1 lds r22, 0x42 ; 0x800042 <__DATA_REGION_ORIGIN__+0x2>
92: 73 a1 lds r23, 0x43 ; 0x800043 <__DATA_REGION_ORIGIN__+0x3>
94: 08 2f mov r16, r24
96: 04 c0 rjmp .+8 ; 0xa0 <main+0x38>
98: 76 95 lsr r23
9a: 67 95 ror r22
9c: 57 95 ror r21
9e: 47 95 ror r20
a0: 0a 95 dec r16
a2: d2 f7 brpl .-12 ; 0x98 <main+0x30>
a4: 41 70 andi r20, 0x01 ; 1
a6: 44 0f add r20, r20
a8: 44 0f add r20, r20
aa: 42 b9 out 0x02, r20 ; 2
#else
//round up by default
__ticks_dc = (uint32_t)(ceil(fabs(__tmp)));
#endif
__builtin_avr_delay_cycles(__ticks_dc);
ac: 43 e0 ldi r20, 0x03 ; 3
ae: 4a 95 dec r20
b0: f1 f7 brne .-4 ; 0xae <main+0x46>
b2: 00 00 nop
b4: 8f 5f subi r24, 0xFF ; 255
b6: 9f 4f sbci r25, 0xFF ; 255
uint8_t i = 0;
while(1)
{
for(i=0;i<32;i++){
b8: 80 32 cpi r24, 0x20 ; 32
ba: 91 07 cpc r25, r17
bc: 39 f7 brne .-50 ; 0x8c <main+0x24>
be: e4 cf rjmp .-56 ; 0x88 <main+0x20>
\end{verbatim}
It's easily readable assembler. See at the end, are the two jumps
back in the loop 0x8c (for loop), and 0x88 (while 1). See the read
on PORTB, and see the delay, which was _delay_us(10), but expands to the avr library definition.
\subsection{Further Notes}
https://www.eevblog.com/forum/microcontrollers/powering-devices-via-gpio-pins/msg2720044/\#msg2720044 - Using GPIO to power devices.
leonerd TODO LINK HERE (bookmarks in main mach) attiny815 with rf. notice the coiled antennas
https://www.eevblog.com/forum/beginners/rf-very-low-power-comms-simple/msg3016400/\#msg3016400 - Forum post regarding this project.
\end{document}

+ 49
- 2
Attiny_Solar_Energy_Harvest/docs/40.tex View File

@ -425,6 +425,55 @@ with my protoboard, it's as easy as, 1) connect cable to protoboard, 2) press P
it doesn't print that it detects the attiny. It's pretty good about this, and if connected
correctly, will just write to the chip, when P is pressed.
\subsubsection{AVR-objdump -S}
Here's some code from lowpower_tx433mhz_2/3:
\begin{verbatim}
PORTB = bitRead(*strctPtr, i) << 2;
8c: 40 a1 lds r20, 0x40 ; 0x800040 <__DATA_REGION_ORIGIN__>
8e: 51 a1 lds r21, 0x41 ; 0x800041 <__DATA_REGION_ORIGIN__+0x1>
90: 62 a1 lds r22, 0x42 ; 0x800042 <__DATA_REGION_ORIGIN__+0x2>
92: 73 a1 lds r23, 0x43 ; 0x800043 <__DATA_REGION_ORIGIN__+0x3>
94: 08 2f mov r16, r24
96: 04 c0 rjmp .+8 ; 0xa0 <main+0x38>
98: 76 95 lsr r23
9a: 67 95 ror r22
9c: 57 95 ror r21
9e: 47 95 ror r20
a0: 0a 95 dec r16
a2: d2 f7 brpl .-12 ; 0x98 <main+0x30>
a4: 41 70 andi r20, 0x01 ; 1
a6: 44 0f add r20, r20
a8: 44 0f add r20, r20
aa: 42 b9 out 0x02, r20 ; 2
#else
//round up by default
__ticks_dc = (uint32_t)(ceil(fabs(__tmp)));
#endif
__builtin_avr_delay_cycles(__ticks_dc);
ac: 43 e0 ldi r20, 0x03 ; 3
ae: 4a 95 dec r20
b0: f1 f7 brne .-4 ; 0xae <main+0x46>
b2: 00 00 nop
b4: 8f 5f subi r24, 0xFF ; 255
b6: 9f 4f sbci r25, 0xFF ; 255
uint8_t i = 0;
while(1)
{
for(i=0;i<32;i++){
b8: 80 32 cpi r24, 0x20 ; 32
ba: 91 07 cpc r25, r17
bc: 39 f7 brne .-50 ; 0x8c <main+0x24>
be: e4 cf rjmp .-56 ; 0x88 <main+0x20>
\end{verbatim}
It's easily readable assembler. See at the end, are the two jumps
back in the loop 0x8c (for loop), and 0x88 (while 1). See the read
on PORTB, and see the delay, which was _delay_us(10), but expands to the avr library definition.
\subsection{Further Notes}
https://www.eevblog.com/forum/microcontrollers/powering-devices-via-gpio-pins/msg2720044/\#msg2720044 - Using GPIO to power devices.
@ -432,7 +481,5 @@ leonerd TODO LINK HERE (bookmarks in main mach) attiny815 with rf. notice the co
https://www.eevblog.com/forum/beginners/rf-very-low-power-comms-simple/msg3016400/\#msg3016400 - Forum post regarding this project.
https://trmm.net/ATtiny10 - Programming Attiny10 with free / open source toolchain
\end{document}

+ 56
- 0
Attiny_Solar_Energy_Harvest/docs/42.tex View File

@ -411,6 +411,62 @@ The goal was to get a 6KHz square wave out of the Attiny10 (first using the time
I also learned that the cable I was using to program the attiny10 was giving me much trouble. I ended up soldering one side to an uno. That out of the way, When programming the attiny10 with my protoboard, it's as easy as, 1) connect cable to protoboard, 2) press P in serial monitor of Uno, 3) paste hex contents of mplab build into serial monitor. No need to ever reset the uno, even if it doesn't print that it detects the attiny. It's pretty good about this, and if connected correctly, will just write to the chip, when P is pressed.
\textbf{End Segway.}
\subsubsection{AVR-objdump -S}
Here's some code from lowpower_tx433mhz_2/3:
\begin{verbatim}
PORTB = bitRead(*strctPtr, i) << 2;
8c: 40 a1 lds r20, 0x40 ; 0x800040 <__DATA_REGION_ORIGIN__>
8e: 51 a1 lds r21, 0x41 ; 0x800041 <__DATA_REGION_ORIGIN__+0x1>
90: 62 a1 lds r22, 0x42 ; 0x800042 <__DATA_REGION_ORIGIN__+0x2>
92: 73 a1 lds r23, 0x43 ; 0x800043 <__DATA_REGION_ORIGIN__+0x3>
94: 08 2f mov r16, r24
96: 04 c0 rjmp .+8 ; 0xa0 <main+0x38>
98: 76 95 lsr r23
9a: 67 95 ror r22
9c: 57 95 ror r21
9e: 47 95 ror r20
a0: 0a 95 dec r16
a2: d2 f7 brpl .-12 ; 0x98 <main+0x30>
a4: 41 70 andi r20, 0x01 ; 1
a6: 44 0f add r20, r20
a8: 44 0f add r20, r20
aa: 42 b9 out 0x02, r20 ; 2
#else
//round up by default
__ticks_dc = (uint32_t)(ceil(fabs(__tmp)));
#endif
__builtin_avr_delay_cycles(__ticks_dc);
ac: 43 e0 ldi r20, 0x03 ; 3
ae: 4a 95 dec r20
b0: f1 f7 brne .-4 ; 0xae <main+0x46>
b2: 00 00 nop
b4: 8f 5f subi r24, 0xFF ; 255
b6: 9f 4f sbci r25, 0xFF ; 255
uint8_t i = 0;
while(1)
{
for(i=0;i<32;i++){
b8: 80 32 cpi r24, 0x20 ; 32
ba: 91 07 cpc r25, r17
bc: 39 f7 brne .-50 ; 0x8c <main+0x24>
be: e4 cf rjmp .-56 ; 0x88 <main+0x20>
\end{verbatim}
It's easily readable assembler. See at the end, are the two jumps
back in the loop 0x8c (for loop), and 0x88 (while 1). See the read
on PORTB, and see the delay, which was _delay_us(10), but expands to the avr library definition.
\subsubsection{uint64_t ptrs?}
I noticed that my structure wasn't being read by the 32bit ptr. I needed either an offset
or a larger ptr. I upgraded the ptr from 32 to 64 bits, and uh oh - that was a mistake.
My asm hex doubled in length. There was a whole extra section at the end...
Lesson learned. Stick to offsets, not large ptrs, with this chip.
\subsection{Further Notes}

+ 477
- 0
Attiny_Solar_Energy_Harvest/docs/43.tex View File

@ -0,0 +1,477 @@
\documentclass[11pt]{article}
%Gummi|065|=)
\usepackage{graphicx}
\usepackage{caption}
\usepackage{xcolor}
\usepackage[vcentering,dvips]{geometry}
\geometry{papersize={6in,9in},total={4.5in,6.8in}}
%\title{\textbf{Door Alarm}}
\author{Steak Electronics}
\date{}
\begin{document}
%\maketitle
\tableofcontents
\textcolor{green!60!blue!70}{
\section{Attiny Solar Energy Harvest Tests}}
I have the following:
\begin{itemize}
\item Solar panels
\item Attiny 10
\end{itemize}
To this list, I will add a supercap, and an energy harvesting IC. The goal being to load the super cap during the day, and to run 24/7. I will need an exceptionally low power micro. The super cap will need to be about 3.3V or 5V.
\textcolor{green!60!blue!70}{
\subsection{Micro Considerations}}
The Arduino Atmega328P is not an option. I'm looking to have a current draw of only 1mA max, (ideally 500uA) when active. Moteino is also not an option for this. Those are made for batteries. I want to be battery free. A super cap, however can be used to store energy. I'll get to that shortly.
For micros, I have some Attiny10 on hand, and these have a reasonably low power pull in active mode. Let's build those up first. What will the micro do? No idea. I haven't a clue.
\textcolor{green!60!blue!70}{
\subsubsection{Micro Notes}}
Must run at 1.8V / 1MHz per front page of data sheet, for 200uA draw in active mode.
\\
\\
\textcolor{green!60!blue!70}{
\subsubsection{Energy Storage}}
I don't want a battery. Let's go with a super cap. The solar panels will only be active some of the time, so I will want to harvest energy with some kind of IC into the cap when the sun is out.\footnote{Reference: www.analog.com/media/en/technical-documentation/technical-articles/solarenergyharvesting.pdf is a start. I'll need to do more research.}
\textcolor{green!60!blue!70}{ \subsubsection{Make parts, not scrap}} I will
want to make sure that all parts I build are perf board parts, not
breadboard scrap (to be torn down and rebuilt again). This is an Attiny,
so no need to test much, yet.
\textcolor{green!60!blue!70}{
\subsection{Programming}}
To program the Attiny10, I'll use the Arduino adapter from the Junk + Arduino blog. I built it up\footnote{Had slight error where the Arduino + board wouldn't read - pins too short on headers, then the arduino wouldn't boot - due to bad connection on perf board shield. Thankfully, the USB port didn't try to run. Protection circuitry cut in on the laptop.}, and was able to Read the memory. In order to upload to the board, you will need a compiler setup. You can possibly do it in AVRGCC, but instead I opted for either Arduino IDE (via Attiny10Core which didn't work), and then went to Mplab. In order for mplab 5.25 to work, it will need XC8 compiler, and there is a pack that can be downloaded through the IDE to get Attiny10 support.
It appears the AVR Dragon (which I have) can not be used. However, other programmers can be used. Pickit 4, Mkavrii, stk600, I think.
\textcolor{green!60!blue!70}{ \subsubsection{Testing Arduino Loader}}
Tested this with the blink\_LED.c in code folder. The code is as simple as possible.
It is the following:
\begin{verbatim}
//#include <xc.h>
#include <avr/io.h>
#include <util/delay.h>
int main(void)
{
// PB2 output
DDRB = 1<<2;
while(1)
{
// Toggle PB2
PINB = 1<<2;
_delay_ms(500);
}
}
\end{verbatim}
When programmed in Mplab, with XC8 compiler, and Attiny10 support, I get the following
hex output:
\begin{verbatim}
:100000000AC020C01FC01EC01DC01CC01BC01AC01B
:1000100019C018C017C011271FBFCFE5D0E0DEBF41
:0A002000CDBF03D000C0F894FFCF5D
:10002A0044E041B940B95FE966E871E05150604087
:0A003A007040E1F700C00000F5CFB0
:02004400DDCF0E
:00000001FF
\end{verbatim}
The content of this hex isn't the focus of this passage. Instead, I want you to review the
results of a D for Dump Memory, by the Arduino Loader.
\begin{verbatim}
Current memory state:
registers, SRAM
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
0000: 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0030: 00 00 00 00 00 00 03 00 00 79 00 03 00 00 00 00
0040: B7 AD AE FA 58 70 63 6B FB 5A B4 1B FF FF 35 3F
0050: 67 D7 33 43 DF 5F FB 72 C9 7D FE E9 9D C5 00 12
NVM lock
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F00: FF FF
configuration
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F40: FF FF
calibration
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3F80: 79 FF
device ID
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
3FC0: 1E 90 03 FF
program
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F
4000: 0A C0 20 C0 1F C0 1E C0 1D C0 1C C0 1B C0 1A C0
4010: 19 C0 18 C0 17 C0 11 27 1F BF CF E5 D0 E0 DE BF
4020: CD BF 03 D0 00 C0 F8 94 FF CF 44 E0 41 B9 40 B9
4030: 5F E9 66 E8 71 E0 51 50 60 40 70 40 E1 F7 00 C0
4040: 00 00 F5 CF DD CF FF FF FF FF FF FF FF FF FF FF
4050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
4060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
(...some memory omitted here for brevity...)
43E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
43F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
\end{verbatim}
Notice that the "AC020C01F" is set. That is from the hex. But the 01000...
before it seems to be missing. Some deciphering of how the Arduino programs
the Attiny is in order here. It also doesn't end the same.
Regardless, when programming, the Arduino reports 70 bytes written, and
likewise in the Mplab project memorymap.xml file, it also notes 70 bytes
for the sketch. This lines up.\footnote{Although for an unknown reason, every command registers twice on the Arduino serial monitor, but this appears to be harmless.}
The blinking LED works. Let's move on.
\textcolor{green!60!blue!70}{\subsubsection{Conclusion on Arduino Programming Attiny10}}
It's possible, but you have to make a dedicated jig (almost), so it might be easier to use the official programming tools. However, based on this https://www.avrfreaks.net/forum/pickit-4-and-avr-mcu I might not have a choice. So I will use the Arduino for now. But will have to devise what on board parts are req'd for programming, and incorporate into proto board layout.
\textcolor{green!60!blue!70}{ \subsubsection{IO Port Switching Speed}}
Using the above code without any delay\_ms, I get the following results from a default clock
speed, and a 128KHz clock speed. This test was done to confirm that I could change the clock with
\begin{verbatim}
//Write CCP
CCP = 0xD8;
//change CLK to 128KHz
CLKMSR = 0b01;
\end{verbatim}
There was no issue.
\begin{verbatim}
Default CLK (8MHz? or 1MHz?): 160KHz IO Switch
128KHz CLK: 2.5KHz IO Switch
\end{verbatim}
I am going to pursue 128KHz for starters, for lower current dissipation. Note that with the Arduino loader, it is cumbersome to test and change code as you move along. It is
therefore going to be necessary to use a programmer, with a dedicated header on board.
\textcolor{green!60!blue!70}{ \subsubsection{VCC 1.8V}}
The lowest power supported: 1.8V can be applied, without any configuration
needed. It does not affect IO switching speed (although obviously amplitude is affected).
\begin{verbatim}
128KHz CLK (5.0V): 2.5256 KHz IO switch
128KHz CLK (3.3V): 2.5477 KHz IO switch
128KHz CLK (1.8V): 2.5849 KHz IO switch
\end{verbatim}
As voltage drops, IO increases.
\\
\\
\textbf{VCC Dropout voltage:}
\\
From 1.5, it drops out at 1.248V or so. Comes back at about 1.34V
\\
\\
Test size of 1.
\\
\\
Can't run this with one (AA) battery, but you could with 2.
\\
\\
Current Draw: 128KHz - IO test, 1.8V, 0.08mA (~78uA) (tested w/3478A)
\\
\\
\textcolor{green!60!blue!70}{\subsection{Application}}
First, I need a board for these and a programmer, to quickly program. Second, I need an application. I want extremely low power. Hopefully, solar with no batteries, to start. This is extremely low - that is the point. Let's keep this ridiculous.
Given the power requirements put me under 1mA (with my current panels), I'm considering the following: EEPROMs would require SPI protocol. Doable, but overcomplicated for now.
\\
\\
Eink (need to find a small and cheap enough option. So far, they have either too many pins, and/or use too much current. Something like what stores use to display prices would work, but that doesn't get the data out, only makes it readable.),
\\
\\
Third option would be RF. That is a viable path, but not today. Let's skip that for now.
\\
\\
Fourth option that comes to mind is IR. IR diodes, as in TV remotes, would work well here. I am choosing this as the first project. I will have dumb clients, that consist of - Attiny / IR / Sensor powered by solar. I will have a BBB that receives the IR data, and does all intelligent data gathering. To keep things simple, the IR will be binary ADC data, or otherwise sensor numbers. No SPI, no protocol complexity. That would require space on the Attiny.
\\
\\
Let's build some boards based on the above.
\\
\\
For sensors:
While building, I came across an option. Hall effect sensors. I think also capacitive sensors can be used. This may find a use in a gate sensor, for when a driveway gate is opened or closed. With a small battery, it would work for years.
Footprints: I had to make a footprint for this module on board package for one sensor. The solution to get footprints right? copy graphic image and make it into silkscreen on the board. Easy.
The sensor I looked at was a temp and humidity sensor SHT11 (SHT10 is obsolete). It is low power enough. However, it's \$20. So not in my price range. Otherwise, it would work here. Looks like communication is a shift register, or SPI.
\textcolor{green!60!blue!70}{
\subsubsection{Magnetic Current Sensor}}
There is this:
BM14270AMUV-LB
Which is low enough current here (<1mA). But \$7 in qty, and req's I2C. Not today.
\textcolor{green!60!blue!70}{
\subsubsection{Accelerometers}}
These are an option.
Best pinout (for deadbug) is LIS344ALHTR (but lacks vcc down to 1.8)
2nd Best pinout with full 1.8 -3.6 vcc is ADXL337BCPZ-RL7
(Keep in mind, these are low end options only)
(Analog output only. keep it simple for now.)
Runner up to all above, is KXTC9-2050-FR . But has worse pinout.
Going with AD part. \$5 in single qty.
Digital output Accelmeters are cheaper.
All have tiny package sizes.
Since I am grabbing 1 output only, will need to orient or choose correct output.
PINOUT: When I said best pinout, I meant that you can solder this by hand or with hot air, without much difficulty, because the layout does not require all pins to be connected (hoping I don't get bit by floating pins, though). Or, the layout has PWR and GND together, which means some pins can be bridged.
\textcolor{green!60!blue!70}{
\subsubsection{Temperature Sensors}}
Temperature can be boring, but why not. Let's throw one of these on: LMT84LP . Pin compatible with LM35. Supply current is maybe 8uA. Extremely low.
LM84 (1.5V starts, to 5.5), LM85 (1.8V to 5.5)
\textcolor{green!60!blue!70}{
\subsubsection{Gas Sensors}}
Lowest is 5mV as of writing on dkey. Skipping. The SHT would work, but its too expensive.
\textcolor{green!60!blue!70}{
\subsubsection{Supercap}}
For now, trying this:
FG0V155ZF
\textcolor{green!60!blue!70}{
\subsubsection{Hall Effect Sensors - Push Pull vs Open Drain Outputs}}
\begin{verbatim}9.1.1OutputTypeTradeoffsThe push-pulloutputallowsfor the lowestsystempowerconsumptionbecausethereis no currentleakagepathwhenthe outputdriveshighor low. The open-drainoutputinvolvesa leakagepaththroughthe externalpullupresistorwhenthe outputdriveslow.The open-drainoutputsof multipledevicescan be tied togetherto forma logicalAND.In this setup,if any sensordriveslow, the voltageon the sharednodebecomeslow. Thiscan allowa singleGPIOto measurean arrayofsensors
\end{verbatim} From DRV5032 data sheet.
\textcolor{green!60!blue!70}{
\subsubsection{Conclusion: Starting Sensors}}
So as a recap, to start with affordable, low power sensors for my project, I have the following types:
\begin{itemize}
\item Temp sensor (cheapest)
\item Magnetic Sensor (hall effect)
\item Movement Sensor (accellerometer) (analog output) (tiny package)
\item capacitive sensor (azoteq)(may only be short range)
\end{itemize}
Output, I have not determined yet. IR will not work, as its too high power. Unless I dedicate a battery just for the IR diode... Or make it battery powered. I'll start with batteries, but for solar panel and supercap, it will likely not be viable, unless I transmit extremely rarely. That is also an option, however.
\subsubsection{Farad to mA}
1.5F supercap can supply 1.5A for 1 second. That is 0.025A for 60 seconds, or 25mA for a minute.
Let's stay I use half that, so 12mA for 60 seconds is my supply. If I transmit once every other hour (when in sunlight)...
\subsection{PCB}
I have built rev2 of the board today. Using an Uno, user must remember to include VCC and GND. So the programming takes up all 6 pins. The 0.1'' headers were slightly close to the resistors, and the top row of VCC and GND headers are separated, so I labeled them V+2, and GND2.\footnote{Forgetting to plug in GND, and or 5v+ (for Uno), while still plugging in the TPI pins, did not break the Attiny10, in my tests today.}
The 0.05'' pin headers work perfect for scope probes. The extra breakout I made demonstrates this.
\subsubsection{PCB Programming}
By default, the Attiny10 idles around 1.5mA (5V), before programming.
First thing to do, is to program it into a low power mode.
In order to use low power, whilst using the Uno, I will need to add a jumper to the PCB,
so that you can switch between V+2, and V+1. Three pin jumper. Outside pins are each V+, internal goes to Attiny V+. I'll need to remove the trace on gerber rev2, that goes from 4 to VCC.
\subsubsection{PCB programming and use}
It's not possible to leave the Arduino plugged in, while testing the Attiny10.
example: Even if you power down the Uno, and use a jumper to change V+ rails,
the power dissipation through the TPI pins (10,11,12,13) will cause a draw of about 545uA, and the Attiny10 will not toggle its led.
Therefore, not only a power jumper is required to use the Attiny, but also
a 4 or 5 pin 0.1" cable for the TPI pins, must be disconnected before using the Attiny.
\footnote{In code section, mplab - tests2, the power draw of the 128KHz internal CLK with PB2 flipping at about 400us a cycle, at 3V VCC is about 115uA. At 2V it is ~95uA.}
\subsubsection{PCB Rev3}
\begin{itemize}
\item Added jumper to switch between different power rails, so that
Arduino can be left sort of plugged in (turns out, it is still required to disconnect 9,10,11,12,13 pins, so use a 4/5 pin cable). This makes testing low power (2-3V) code, easier, while still programming with the 5V Uno.
\item Added SOT23-6 breakout
\item Moved Resistors further from 9,10,11,12,13 pins.
\item Added separate board for analog Accelerometer.
\item Moved VCC breakout (0.5'' header pins) to connect directly to tiny, not to bottom Voltage rail.
\item Added note about VCC and GND must be connected when programming.
\item Added accelerometer pcb breakout. Package is small, but thanks to pinout/unused pins - is reasonable to solder with hot air. I knew this when I chose it... Then I forgot it earlier today.
\end{itemize}
\subsubsection{RF Comms}
I want to use RF to communicate with this device. The IR would work, but would require batteries. If I'm going to use batteries I may as well use RF. Ideally, RF without batteries would be nice.
I searched for LoRa modules, and came across this https://www.disk91.com/2015/technology/networks/first-step-in-lora-land-microchip-rn2483-test/
I've added the datasheets. The RN2483 can be set with a UART, which means two pins on the Attiny. I will want to use a transistor to turn off the module (not using sleep mode), when not in use, so that's another pin. The 4th pin would be for whatever sensor I'm using. Right now, I'm thinking an accelerometer to watch for motion on a door or gate. I may need more pins, as I'd like to be able to switch the accel ic on and off as well.
There is the Attiny40, and also an Attiny402. Different, but both worth considering. The Attiny40 is covered by my programmer, the 402 is not. 40 is from early 2010's, the 202/402 is from 2017. Also the Attiny20, which is less pins than the 40. But covered by my programmer. I would lean towards the 10 or the 20. 40 is too much IO.
Attiny10 has I2C on board (TWI). I'm going to stick with the 10. Keep it simple.
\subsubsection{Present Questions}
questions:
is a two pin UART the best I can expect to find for simple rf comms
is lora a reasonable solution here? I want as low power as possible,
Lora is not the lowest but if I transmit rarely, and for a short time perhaps it won't matter.
Is there some other way to transmit data? I don't want to use ultrasonic waves, and IR seems to be too much current, as well
as requiring line of sight / lens.
\subsubsection{Plan of attack}
I'm going to prototype with the Microchip RF modules for now, and see if I can get this working off a solar panel. I have an ADC, and with RESET disabled another IO. Goal is now:
Configure RF modules w/arduino.
Configure RF module (one Uno receiver, other tiny transmitter)
Attach any sensor that uses ADC. (temp sensor, resistor light or thermocouple, current sensor (monitoring power supply), and I have the ones I already tested today (but will hold off on - the accelerometer, and hall effect).
Desired applications
- Temp of hot surface (boiler) monitoring
- Solar current input monitoring.
As I've already worked with a current sense before in my battery project (Electronics\_Projects\_2019), I will use again the INA169. It seems to be low enough power for my needs, though I will double check in practice. The data sheet lacks obvious power dissipation figures, while sensing, though quiescient is about 50uA.
\subsubsection{Other Sensors}
I need to verify that the following sensors could be used with low power:
Light dependent Resistor / Diode
Sound sensor (mic)
\subsubsection{RF Searching}
RF Transceiver ICs require assembly/programming/time, so we want RF Transceiver modules instead. There are a number of roughly 10mA TX active, but that is the lowest I can find. Among these ics (not modules), most are SPI, have their own ARM core... The modules are a bit better in having some that can be controlled by serial. I like the TRM-433-LT, but I will skip this for now (\$20 each).
I also like the RC11xx-RC232, though the latter is about 30mA TX. That may be the best I can hope for. These two are 433MHz (ISM is 433 - 434MHz). The radiocrafts product is essentially a simplified solution, preprogrammed with a uart which can be used to adjust settings. This option appears to be on part with the microchip offering I've looked at, the RN2483, in fact they both came up on my search results, next to each other. RN doesn't have what IC they use but RC, uses CC1110.
Another option:
ZETAPLUS-433-SO is faster than others (500Kbs), and has lower TX (18mA). Up to 2KM range...
There's more options (over \$18), but for the following specifications, the above three are basically what you can choose from. Ignoring those with high TX power rates (sparkfun), or requires SPI (stmicro)
Specs:
\begin{itemize}
\item In stock
\item Frequency 433-434MHz
\item battery powered vcc range (2)
\end{itemize}
\footnote{There's only 25.}
I will start with two Radiocraft modules. Let's see how that plays out.\footnote{A set of Dev boards for the radiocraft are \$250. Ouch.}
\subsubsection{PCB Rev 5}
\begin{itemize}
\item Added instructions to back of board to speed up getting back to this project after some time.
\item Moved resistors to be further away from programming header
\item Fixed missed connection from JMP to V1 / V2 when I moved barrel plug, and added back the bottom right mounting hole in rev4.
\item Changed prg/jmp/vcc to v1/jmp/v2 (either v rail can be used for programming)
\end{itemize}
\subsubsection{Input Protection on Accidental Reverse Cable Hookup}
I'm going to want something to block plugging in the dupont cable backwards from breaking things. I had a square wave outputting on one pin of the Attiny10, and programming was going well, with the cable left in, until I removed, then connected it in backwards. The square wave blew something on the Atmega328p of the uno. This led me to quick replacement of the Uno atmega's here: electronics\_projects\_2020/AVRdragon\_Optiboot\_Atmega328
I don't know what's better. Make it foolproof, or let people learn the hard way. With the latter, they at least get a way to reprogram blank Atmegas (quite useful with Unos).
Perhaps instead, a mated connector would be enough on the breakout...
\subsubsection{Nuts \& Volts 433MHz RF Transmitters}
A recent nuts and volts issue (2019), covered a few sections on RF in one magazine. They covered, transmitters, as well as measuring power output of a transmitter (in separate articles). The RF transmitters they covered were 433MHz, ebay transmitters. The transmitters output the square wave you feed to them. Extremely basic. But also open to modifications and adaptations. The part count is very low, with minimal ICs. (The receivers do have an IC, though.)
I've bought some of these, and will do some testing.
\begin{center}
\includegraphics[scale=1.5]{../pics/rxtx_433.jpg}
\captionof{figure}{simple rx tx on 433mhz}
\end{center}
\subsection{Connecting to Programmer}
These notes may be redundant, need to double check.
When connecting, have a base setup that works as a sanity check.
It may be possible to blow out atmega328p pins if you leave attiny running, then plug in the cable back to front (i.e. pin 13 in 9).
Make sure the cable is connected well. Loose cables, will cause the programmer to fail. Solder wires to Uno if necessary.
\subsection{Attiny10 Timer Fail}
\textbf{Note: this is a segway, where I tried to get a 6KHz clock out of one of the Attinys for the 60Hz project).}
\\
\\
The goal was to get a 6KHz square wave out of the Attiny10 (first using the timer). After a night of trying to wrangle with timer 0 and CTC mode of the Attiny10 timer (which failed to work as expected). I've decided to buy a 6KHz oscillator. I was able to get 60.3KHz out of the Attiny using no optimization in mplab and IO as fast as possible. I was able to get 6.13Khz using optimization and a for loop (unfortunately the nops got optimized out).
I also learned that the cable I was using to program the attiny10 was giving me much trouble. I ended up soldering one side to an uno. That out of the way, When programming the attiny10 with my protoboard, it's as easy as, 1) connect cable to protoboard, 2) press P in serial monitor of Uno, 3) paste hex contents of mplab build into serial monitor. No need to ever reset the uno, even if it doesn't print that it detects the attiny. It's pretty good about this, and if connected correctly, will just write to the chip, when P is pressed.
\textbf{End Segway.}
\subsubsection{AVR-objdump -S}
Here's some code from lowpower_tx433mhz_2/3:
\begin{verbatim}
PORTB = bitRead(*strctPtr, i) << 2;
8c: 40 a1 lds r20, 0x40 ; 0x800040 <__DATA_REGION_ORIGIN__>
8e: 51 a1 lds r21, 0x41 ; 0x800041 <__DATA_REGION_ORIGIN__+0x1>
90: 62 a1 lds r22, 0x42 ; 0x800042 <__DATA_REGION_ORIGIN__+0x2>
92: 73 a1 lds r23, 0x43 ; 0x800043 <__DATA_REGION_ORIGIN__+0x3>
94: 08 2f mov r16, r24
96: 04 c0 rjmp .+8 ; 0xa0 <main+0x38>
98: 76 95 lsr r23
9a: 67 95 ror r22
9c: 57 95 ror r21
9e: 47 95 ror r20
a0: 0a 95 dec r16
a2: d2 f7 brpl .-12 ; 0x98 <main+0x30>
a4: 41 70 andi r20, 0x01 ; 1
a6: 44 0f add r20, r20
a8: 44 0f add r20, r20
aa: 42 b9 out 0x02, r20 ; 2
#else
//round up by default
__ticks_dc = (uint32_t)(ceil(fabs(__tmp)));
#endif
__builtin_avr_delay_cycles(__ticks_dc);
ac: 43 e0 ldi r20, 0x03 ; 3
ae: 4a 95 dec r20
b0: f1 f7 brne .-4 ; 0xae <main+0x46>
b2: 00 00 nop
b4: 8f 5f subi r24, 0xFF ; 255
b6: 9f 4f sbci r25, 0xFF ; 255
uint8_t i = 0;
while(1)
{
for(i=0;i<32;i++){
b8: 80 32 cpi r24, 0x20 ; 32
ba: 91 07 cpc r25, r17
bc: 39 f7 brne .-50 ; 0x8c <main+0x24>
be: e4 cf rjmp .-56 ; 0x88 <main+0x20>
\end{verbatim}
It's easily readable assembler. See at the end, are the two jumps
back in the loop 0x8c (for loop), and 0x88 (while 1). See the read
on PORTB, and see the delay, which was _delay_us(10), but expands to the avr library definition.
\subsection{Further Notes}
https://www.eevblog.com/forum/microcontrollers/powering-devices-via-gpio-pins/msg2720044/\#msg2720044 - Using GPIO to power devices.
leonerd TODO LINK HERE (bookmarks in main mach) attiny815 with rf. notice the coiled antennas
https://www.eevblog.com/forum/beginners/rf-very-low-power-comms-simple/msg3016400/\#msg3016400 - Forum post regarding this project.
https://trmm.net/ATtiny10 - Programming Attiny10 with free / open source toolchain
https://blog.podkalicki.com/attiny13-blinky-with-timer-compa/ - Similar example for Attiny13, adapted but did not work with Attiny10.
\end{document}

Loading…
Cancel
Save